qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] hw/i386: add legacy cpu hotplug for pc-lite


From: wei . guo . simon
Subject: [Qemu-devel] [PATCH] hw/i386: add legacy cpu hotplug for pc-lite
Date: Tue, 2 Oct 2018 09:20:53 +0800

From: Simon Guo <address@hidden>

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 <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]