9ae3a8
From ce8b0103a1c5cae9030156d9f17daf5dee5ed4c5 Mon Sep 17 00:00:00 2001
9ae3a8
From: Eduardo Habkost <ehabkost@redhat.com>
9ae3a8
Date: Thu, 23 Feb 2017 14:29:35 +0100
9ae3a8
Subject: [PATCH 05/17] target-i386: kvm_cpu_fill_host(): No need to check CPU
9ae3a8
 vendor
9ae3a8
9ae3a8
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
9ae3a8
Message-id: <20170223142945.17790-5-ehabkost@redhat.com>
9ae3a8
Patchwork-id: 74043
9ae3a8
O-Subject: [RHEL-7.4 qemu-kvm PATCH v2 04/14] target-i386: kvm_cpu_fill_host(): No need to check CPU vendor
9ae3a8
Bugzilla: 1382122
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
9ae3a8
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
9ae3a8
There's no need to check CPU vendor before calling
9ae3a8
kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX), because:
9ae3a8
9ae3a8
 * The kernel won't return any entry for 0xC0000000 if host CPU vendor
9ae3a8
   is not Centaur (See kvm_dev_ioctl_get_cpuid() on the kernel code);
9ae3a8
 * kvm_arch_get_supported_cpuid() will return 0 if no entry is returned
9ae3a8
   by the kernel for the requested leaf.
9ae3a8
9ae3a8
This will simplify the kvm_cpu_fill_host() code a little.
9ae3a8
9ae3a8
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
9ae3a8
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
(cherry picked from commit b73dcfb16fc894041de553ac9f98b9e1640fcf06)
9ae3a8
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 target-i386/cpu.c | 14 ++++++--------
9ae3a8
 1 file changed, 6 insertions(+), 8 deletions(-)
9ae3a8
9ae3a8
diff --git a/target-i386/cpu.c b/target-i386/cpu.c
9ae3a8
index c82073e..a10055b 100644
9ae3a8
--- a/target-i386/cpu.c
9ae3a8
+++ b/target-i386/cpu.c
9ae3a8
@@ -1285,14 +1285,12 @@ static void kvm_cpu_fill_host(x86_def_t *x86_cpu_def)
9ae3a8
     cpu_x86_fill_model_id(x86_cpu_def->model_id);
9ae3a8
 
9ae3a8
     /* Call Centaur's CPUID instruction. */
9ae3a8
-    if (!strcmp(x86_cpu_def->vendor, CPUID_VENDOR_VIA)) {
9ae3a8
-        eax = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX);
9ae3a8
-        if (eax >= 0xC0000001) {
9ae3a8
-            /* Support VIA max extended level */
9ae3a8
-            x86_cpu_def->xlevel2 = eax;
9ae3a8
-            x86_cpu_def->features[FEAT_C000_0001_EDX] =
9ae3a8
-                    kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX);
9ae3a8
-        }
9ae3a8
+    eax = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX);
9ae3a8
+    if (eax >= 0xC0000001) {
9ae3a8
+        /* Support VIA max extended level */
9ae3a8
+        x86_cpu_def->xlevel2 = eax;
9ae3a8
+        x86_cpu_def->features[FEAT_C000_0001_EDX] =
9ae3a8
+                kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX);
9ae3a8
     }
9ae3a8
 
9ae3a8
     /* Other KVM-specific feature fields: */
9ae3a8
-- 
9ae3a8
1.8.3.1
9ae3a8