diff options
| author | Eduardo Habkost | 2012-09-06 12:05:35 +0200 |
|---|---|---|
| committer | Blue Swirl | 2012-09-30 13:10:38 +0200 |
| commit | b1f4679392a03f2b26a37bfa52e95d6cc4f73d82 (patch) | |
| tree | a5b85b836e2f978e96639e062f213319bd975e7e | |
| parent | Merge branch 'arm-devs.for-upstream' of git://git.linaro.org/people/pmaydell/... (diff) | |
| download | qemu-b1f4679392a03f2b26a37bfa52e95d6cc4f73d82.tar.gz qemu-b1f4679392a03f2b26a37bfa52e95d6cc4f73d82.tar.xz qemu-b1f4679392a03f2b26a37bfa52e95d6cc4f73d82.zip | |
i386: kvm: bit 10 of CPUID[8000_0001].EDX is reserved
Bit 10 of CPUID[8000_0001].EDX is not defined as an alias of
CPUID[1].EDX[10], so do not duplicate it on
kvm_arch_get_supported_cpuid().
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>
| -rw-r--r-- | target-i386/kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 6790180b0a..acb93693b4 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 & 0x183f7ff; + ret |= cpuid_1_edx & 0x183f3ff; break; } break; |
