* [Qemu-devel] [qemu-kvm PATCH 1/1] don't try to hotplug a cpu
@ 2011-12-01 17:14 Serge Hallyn
0 siblings, 0 replies; only message in thread
From: Serge Hallyn @ 2011-12-01 17:14 UTC (permalink / raw)
To: qemu-devel
When you do "cpu_set <n> online" where <n> > current number of cpus,
qemu-kvm will end up crashing when qdev finds hotplug is not enabled.
Let's instead gracefully refuse.
See https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/878422 for
the related bug report.
Signed-off-by: Serge Hallyn <serge.hallyn@canonical.com>
---
hw/acpi_piix4.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
index 1b35707..5e95569 100644
--- a/hw/acpi_piix4.c
+++ b/hw/acpi_piix4.c
@@ -589,12 +589,17 @@ void qemu_system_cpu_hot_add(int cpu, int state)
PIIX4PMState *s = global_piix4_pm_state;
if (state && !qemu_get_cpu(cpu)) {
+#if 1
+ fprintf(stderr, "cpu hotplug not supported\n", cpu);
+ return;
+#else
env = pc_new_cpu(global_cpu_model);
if (!env) {
fprintf(stderr, "cpu %d creation failed\n", cpu);
return;
}
env->cpuid_apic_id = cpu;
+#endif
}
if (state)
--
1.7.5.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-12-01 17:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-01 17:14 [Qemu-devel] [qemu-kvm PATCH 1/1] don't try to hotplug a cpu Serge Hallyn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).