mirror of https://gitee.com/openkylin/qemu.git
target-i386: Set APIC ID using cpu_index on CONFIG_USER
The PC CPU initialization code already sets apic-id based on the CPU topology, and CONFIG_USER doesn't need the topology-based APIC ID calculation code. Make CONFIG_USER set apic-id before realizing the CPU (just like PC already does), so we can simplify x86_cpu_initfn later. As there is no CPU topology configuration in CONFIG_USER, just use cpu_index as the APIC ID. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
696da41b1b
commit
9c235e83f1
|
@ -2145,6 +2145,12 @@ CPUX86State *cpu_x86_init_user(const char *cpu_model)
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object_property_set_int(OBJECT(cpu), CPU(cpu)->cpu_index, "apic-id",
|
||||||
|
&error);
|
||||||
|
if (error) {
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
|
||||||
object_property_set_bool(OBJECT(cpu), true, "realized", &error);
|
object_property_set_bool(OBJECT(cpu), true, "realized", &error);
|
||||||
if (error) {
|
if (error) {
|
||||||
goto error;
|
goto error;
|
||||||
|
|
Loading…
Reference in New Issue