]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
cpu: Bugfix for s390 CPU driver to return a host CPU model
authorDaniel Hansel <daniel.hansel@linux.vnet.ibm.com>
Fri, 19 Dec 2014 14:49:35 +0000 (15:49 +0100)
committerJán Tomko <jtomko@redhat.com>
Mon, 12 Jan 2015 14:08:29 +0000 (15:08 +0100)
The curent libvirt CPU driver for s390 does not return a host CPU model.
This patch returns 'host' according to the other platforms that would
not decode any CPU model.
This is an intermediate bugfix due to a discussion on OpenStack mailing
list. The final patch introducing the CPU model support for s390x will
exchange the hard-coded decode method.

Signed-off-by: Daniel Hansel <daniel.hansel@linux.vnet.ibm.com>
src/cpu/cpu_s390.c

index f9d7e216aec847df321d7c7d3a050415ee8550fd..23a7f9d8d38a00dc9c673d224f797cf8a17aa5d1 100644 (file)
@@ -25,6 +25,7 @@
 #include <config.h>
 
 #include "viralloc.h"
+#include "virstring.h"
 #include "cpu.h"
 
 
@@ -47,7 +48,7 @@ s390NodeData(virArch arch)
 
 
 static int
-s390Decode(virCPUDefPtr cpu ATTRIBUTE_UNUSED,
+s390Decode(virCPUDefPtr cpu,
            const virCPUData *data ATTRIBUTE_UNUSED,
            const char **models ATTRIBUTE_UNUSED,
            unsigned int nmodels ATTRIBUTE_UNUSED,
@@ -57,6 +58,10 @@ s390Decode(virCPUDefPtr cpu ATTRIBUTE_UNUSED,
 
     virCheckFlags(VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES, -1);
 
+    if (cpu->model == NULL &&
+        VIR_STRDUP(cpu->model, "host") < 0)
+        return -1;
+
     return 0;
 }