]> Git Repo - qemu.git/commit
s390x: replace cpu_s390x_init() with cpu_generic_init()
authorIgor Mammedov <[email protected]>
Thu, 31 Aug 2017 13:19:38 +0000 (15:19 +0200)
committerEduardo Habkost <[email protected]>
Fri, 1 Sep 2017 14:54:24 +0000 (11:54 -0300)
commit6ad76dfd137b4d43c88f88a3cd27312f066c63ac
tree4c69e2f8e5a7b54f6c7ccdbccfcdc23449e2f1a3
parent3d592ffbabec5120d501d534478c2c95dff29aa7
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 <[email protected]>
Acked-by: Cornelia Huck <[email protected]>
Message-Id: <1504185578[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
target/s390x/cpu.c
target/s390x/cpu.h
target/s390x/helper.c
This page took 0.022374 seconds and 4 git commands to generate.