diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-13 19:28:04 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-13 19:28:04 +0000 |
commit | 57003085037f554de82327cbc34105cda1942892 (patch) | |
tree | 538e1b1d4a31347da41891eca9d5e27f98c1bf07 /target-i386 | |
parent | e20e830bbdc502986d6fd30c26b06c37a5ee0611 (diff) |
Fix CPUID ext2 features masking (Avi Kivity)
Typo. Exposes rdtscp which kills some guests.
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5717 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index 7ddb4cec13..fd26e3e542 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1466,7 +1466,7 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, /* svm */ *ecx &= ~4UL; /* 3dnow */ - *edx = ~0xc0000000; + *edx &= ~0xc0000000; } break; case 0x80000002: |