diff options
author | Igor Mammedov <imammedo@redhat.com> | 2017-08-31 15:19:38 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-09-01 11:54:24 -0300 |
commit | 6ad76dfd137b4d43c88f88a3cd27312f066c63ac (patch) | |
tree | 4c69e2f8e5a7b54f6c7ccdbccfcdc23449e2f1a3 /target/s390x/helper.c | |
parent | 3d592ffbabec5120d501d534478c2c95dff29aa7 (diff) | |
download | qemu-6ad76dfd137b4d43c88f88a3cd27312f066c63ac.zip qemu-6ad76dfd137b4d43c88f88a3cd27312f066c63ac.tar.gz qemu-6ad76dfd137b4d43c88f88a3cd27312f066c63ac.tar.bz2 |
s390x: replace cpu_s390x_init() with cpu_generic_init()
cpu_s390x_init() is used only *-user targets indirectly
via cpu_init() macro and has a hack to assign ids to created
cpus (I'm not sure if 'id' really matters to *-user emulation).
So to on safe side, instead of having custom wrapper to do numbering
replace it with cpu_generic_init() and use S390CPUClass::next_cpu_id
which could serve the same purpose as static variable and move cpu->id
initialization to s390_cpu_initfn for CONFIG_USER_ONLY use-case.
PS:
ifdef is ugly but it allows us to hide s390x detail that isn't
set by *-user targets and reuse generic cpu creation utility
for btoh machine and user emulation.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-Id: <1504185578-80843-1-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/s390x/helper.c')
-rw-r--r-- | target/s390x/helper.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/target/s390x/helper.c b/target/s390x/helper.c index 3adb9de..ba29504 100644 --- a/target/s390x/helper.c +++ b/target/s390x/helper.c @@ -129,20 +129,6 @@ out: return cpu; } -S390CPU *cpu_s390x_init(const char *cpu_model) -{ - Error *err = NULL; - S390CPU *cpu; - /* Use to track CPU ID for linux-user only */ - static int64_t next_cpu_id; - - cpu = s390x_new_cpu(cpu_model, next_cpu_id++, &err); - if (err) { - error_report_err(err); - } - return cpu; -} - #ifndef CONFIG_USER_ONLY hwaddr s390_cpu_get_phys_page_debug(CPUState *cs, vaddr vaddr) |