summaryrefslogtreecommitdiffstats
path: root/target-i386/kvm.c
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2012-09-06 10:05:36 +0000
committerBlue Swirl <blauwirbel@gmail.com>2012-09-30 11:11:00 +0000
commit8fad4b44a0f71cd404f95f109657c0ccbf11f8f9 (patch)
tree319716bd1abf4434d51a6c41d9330bca6b292489 /target-i386/kvm.c
parentb1f4679392a03f2b26a37bfa52e95d6cc4f73d82 (diff)
downloadhqemu-8fad4b44a0f71cd404f95f109657c0ccbf11f8f9.zip
hqemu-8fad4b44a0f71cd404f95f109657c0ccbf11f8f9.tar.gz
i386: kvm: use a #define for the set of alias feature bits
Instea of using a hardcoded hex constant, define CPUID_EXT2_AMD_ALIASES as the set of CPUID[8000_0001].EDX bits that on AMD are the same as the bits of CPUID[1].EDX. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-By: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Don Slutz <Don@CloudSwitch.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/kvm.c')
-rw-r--r--target-i386/kvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/kvm.c b/target-i386/kvm.c
index acb9369..5b18383 100644
--- a/target-i386/kvm.c
+++ b/target-i386/kvm.c
@@ -165,7 +165,7 @@ uint32_t kvm_arch_get_supported_cpuid(KVMState *s, uint32_t function,
* so add missing bits according to the AMD spec:
*/
cpuid_1_edx = kvm_arch_get_supported_cpuid(s, 1, 0, R_EDX);
- ret |= cpuid_1_edx & 0x183f3ff;
+ ret |= cpuid_1_edx & CPUID_EXT2_AMD_ALIASES;
break;
}
break;
OpenPOWER on IntegriCloud