mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
numa: consolidate cpu_preplug fixups/checks for pc/arm/spapr
Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Message-Id: <1496161442-96665-2-git-send-email-imammedo@redhat.com> [ehabkost: Fix indentation] Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
1f43571604
commit
a0ceb640d0
5 changed files with 28 additions and 46 deletions
|
@ -1372,7 +1372,6 @@ static void machvirt_init(MachineState *machine)
|
|||
for (n = 0; n < possible_cpus->len; n++) {
|
||||
Object *cpuobj;
|
||||
CPUState *cs;
|
||||
int node_id;
|
||||
|
||||
if (n >= smp_cpus) {
|
||||
break;
|
||||
|
@ -1385,19 +1384,8 @@ static void machvirt_init(MachineState *machine)
|
|||
cs = CPU(cpuobj);
|
||||
cs->cpu_index = n;
|
||||
|
||||
node_id = possible_cpus->cpus[cs->cpu_index].props.node_id;
|
||||
if (!possible_cpus->cpus[cs->cpu_index].props.has_node_id) {
|
||||
/* by default CPUState::numa_node was 0 if it's not set via CLI
|
||||
* keep it this way for now but in future we probably should
|
||||
* refuse to start up with incomplete numa mapping */
|
||||
node_id = 0;
|
||||
}
|
||||
if (cs->numa_node == CPU_UNSET_NUMA_NODE_ID) {
|
||||
cs->numa_node = node_id;
|
||||
} else {
|
||||
/* CPU isn't device_add compatible yet, this shouldn't happen */
|
||||
error_setg(&error_abort, "user set node-id not implemented");
|
||||
}
|
||||
numa_cpu_pre_plug(&possible_cpus->cpus[cs->cpu_index], DEVICE(cpuobj),
|
||||
&error_fatal);
|
||||
|
||||
if (!vms->secure) {
|
||||
object_property_set_bool(cpuobj, false, "has_el3", NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue