]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
target-i386: Remove SSE4a from qemu64 CPU model
authorEduardo Habkost <ehabkost@redhat.com>
Tue, 3 Nov 2015 19:17:33 +0000 (17:17 -0200)
committerEduardo Habkost <ehabkost@redhat.com>
Thu, 5 Nov 2015 18:27:59 +0000 (16:27 -0200)
SSE4a is not available in any Intel CPU, and we want to make the default
CPU runnable in most hosts, so it doesn't make sense to enable it by
default in KVM mode.

We should eventually have all features supported by TCG enabled by
default in TCG mode, but as we don't have a good mechanism today to
ensure we have different defaults in KVM and TCG mode, disable SSE4a in
the qemu64 CPU model entirely.

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
include/hw/i386/pc.h
target-i386/cpu.c

index 8be4520265f49ab70c65ba99bcae66253ee2ea93..bc82c140fa05db580939856db5eed7fb646ee152 100644 (file)
@@ -327,6 +327,11 @@ bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
             .driver   = TYPE_X86_CPU,\
             .property = "check",\
             .value    = "off",\
+        },\
+        {\
+            .driver   = "qemu64" "-" TYPE_X86_CPU,\
+            .property = "sse4a",\
+            .value    = "on",\
         },
 
 #define PC_COMPAT_2_3 \
index 9d0eedf7518eeb93e3e0aea7acd1d5fe9ad5a0b7..5aa3ce7a902f6fb8bf989d19dd16aebcb2c7fc42 100644 (file)
@@ -676,7 +676,7 @@ static X86CPUDefinition builtin_x86_defs[] = {
             CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
         .features[FEAT_8000_0001_ECX] =
             CPUID_EXT3_LAHF_LM | CPUID_EXT3_SVM |
-            CPUID_EXT3_ABM | CPUID_EXT3_SSE4A,
+            CPUID_EXT3_ABM,
         .xlevel = 0x8000000A,
     },
     {