[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v2 5/5] ppc/kvm: Register also a generic spapr CPU cor
From: |
Thomas Huth |
Subject: |
[Qemu-ppc] [PATCH v2 5/5] ppc/kvm: Register also a generic spapr CPU core family type |
Date: |
Tue, 9 Aug 2016 19:00:01 +0200 |
There is a regression with the "-cpu" parameter introduced by
the spapr CPU hotplug code: We used to allow to specify a
"CPU family" name with the "-cpu" parameter when running on KVM so
that the user does not need to know the gory details of the exact
CPU version of the host CPU. For example, it was possible to
use "-cpu POWER8" on a POWER8E host CPU. This behavior does not
work anymore with the new hot-pluggable spapr-cpu-core types.
Since libvirt already heavily depends on the old behavior, this
is quite a severe regression in the QEMU parameter interface.
Let's fix it by supporting a CPU family type for the spapr-cpu-core
on KVM, too.
Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1363812
Signed-off-by: Thomas Huth <address@hidden>
---
target-ppc/kvm.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c
index 82b1df9..dcb68b9 100644
--- a/target-ppc/kvm.c
+++ b/target-ppc/kvm.c
@@ -2409,8 +2409,11 @@ static int kvm_ppc_register_host_cpu_type(void)
type_info.class_init = NULL;
type_register(&type_info);
g_free((void *)type_info.name);
- type_info.instance_size = 0;
- type_info.instance_init = NULL;
+
+ /* Register generic spapr CPU family class for current host CPU type */
+ type_info.name = g_strdup_printf("%s-"TYPE_SPAPR_CPU_CORE, dc->desc);
+ type_register(&type_info);
+ g_free((void *)type_info.name);
#endif
return 0;
--
1.8.3.1
- [Qemu-ppc] [PATCH v2 0/5] spapr: Fix regression in CPU alias handling, Thomas Huth, 2016/08/09
- [Qemu-ppc] [PATCH v2 1/5] spapr: remove extra type variable, Thomas Huth, 2016/08/09
- [Qemu-ppc] [PATCH v2 2/5] ppc: Introduce a function to look up CPU alias strings, Thomas Huth, 2016/08/09
- [Qemu-ppc] [PATCH v2 3/5] hw/ppc/spapr: Look up CPU alias names instead of hard-coding the aliases, Thomas Huth, 2016/08/09
- [Qemu-ppc] [PATCH v2 4/5] ppc/kvm: Do not mess up the generic CPU family registration, Thomas Huth, 2016/08/09
- [Qemu-ppc] [PATCH v2 5/5] ppc/kvm: Register also a generic spapr CPU core family type,
Thomas Huth <=
- Re: [Qemu-ppc] [PATCH v2 0/5] spapr: Fix regression in CPU alias handling, David Gibson, 2016/08/10