From: Simon Guo <wei.guo.si...@linux.alibaba.com> Currently pc-lite cpu hot plug will leads to error like: "acpi: device plug request for not supported device type: host-x86_64-cpu"
. However pc_lite_machine_options() didn't setup flag legacy_cpu_hotplug correctly, which will leads to a later mess state, and causes the error above. This patch corrects this by initialize legacy_cpu_hotplug flag correctly at pc_lite_machine_options(). Signed-off-by: Simon Guo <wei.guo.si...@linux.alibaba.com> --- hw/i386/pc_lite.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386/pc_lite.c b/hw/i386/pc_lite.c index 707f2fd..5fd05b1 100644 --- a/hw/i386/pc_lite.c +++ b/hw/i386/pc_lite.c @@ -196,6 +196,7 @@ static void pc_lite_machine_options(MachineClass *m) m->units_per_default_bus = 1; m->no_floppy = 1; pcmc->type = PC_MACHINE_TYPE_LITE; + pcmc->legacy_cpu_hotplug = true; } static void pc_lite_2_7_machine_options(MachineClass *m) -- 1.8.3.1