diff options
| author | Igor Mammedov | 2017-02-10 11:18:49 +0100 |
|---|---|---|
| committer | David Gibson | 2017-02-22 01:28:28 +0100 |
| commit | 535455fdee60e4e7979a5060ba7a4e4588ee1a1e (patch) | |
| tree | ad026296762ec089cc2a41a9e743be465ef31bab /include | |
| parent | change CPUArchId.cpu type to Object* (diff) | |
| download | qemu-535455fdee60e4e7979a5060ba7a4e4588ee1a1e.tar.gz qemu-535455fdee60e4e7979a5060ba7a4e4588ee1a1e.tar.xz qemu-535455fdee60e4e7979a5060ba7a4e4588ee1a1e.zip | |
spapr: reuse machine->possible_cpus instead of cores[]
Replace SPAPR specific cores[] array with generic
machine->possible_cpus and store core objects there.
It makes cores bookkeeping similar to x86 cpus and
will allow to unify similar code.
It would allow to replace cpu_index based NUMA node
mapping with iproperty based one (for -device created
cores) since possible_cpus carries board defined
topology/layout.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/ppc/spapr.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h index a2d8964f7e..f9b17d860a 100644 --- a/include/hw/ppc/spapr.h +++ b/include/hw/ppc/spapr.h @@ -94,7 +94,6 @@ struct sPAPRMachineState { /*< public >*/ char *kvm_type; MemoryHotplugState hotplug_memory; - Object **cores; }; #define H_SUCCESS 0 |
