diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-11-03 17:17:33 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-11-05 16:27:59 -0200 |
commit | 0909ad24b2769368716c85f79fbb995dbb7041a9 (patch) | |
tree | 64ca337d347f7d2377218cb00b481030ad620855 /include | |
parent | 3e68482224129c3ddc061af7c9d438b882ecfdd1 (diff) | |
download | qemu-0909ad24b2769368716c85f79fbb995dbb7041a9.tar.gz qemu-0909ad24b2769368716c85f79fbb995dbb7041a9.tar.bz2 qemu-0909ad24b2769368716c85f79fbb995dbb7041a9.zip |
target-i386: Remove SSE4a from qemu64 CPU model
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/i386/pc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 8be4520265..bc82c140fa 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -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 \ |