summaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorAlexander Graf2009-01-05 16:02:47 +0100
committerAvi Kivity2009-03-24 10:03:02 +0100
commitc8a73f186bf62235b6fb5dd52601d641917dd50b (patch)
tree8bd393676b54689bf3d0d1c609f80237992d0645 /arch/x86/kvm
parentKVM: Add support to disable MSI for assigned device (diff)
downloadkernel-qcow2-linux-c8a73f186bf62235b6fb5dd52601d641917dd50b.tar.gz
kernel-qcow2-linux-c8a73f186bf62235b6fb5dd52601d641917dd50b.tar.xz
kernel-qcow2-linux-c8a73f186bf62235b6fb5dd52601d641917dd50b.zip
KVM: SVM: Add microcode patch level dummy
VMware ESX checks if the microcode level is correct when using a barcelona CPU, in order to see if it actually can use SVM. Let's tell it we're on the safe side... Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/svm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index b3a7a314d55c..3a60c3f04e65 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -1928,6 +1928,9 @@ static int svm_get_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 *data)
case MSR_VM_CR:
*data = 0;
break;
+ case MSR_IA32_UCODE_REV:
+ *data = 0x01000065;
+ break;
default:
return kvm_get_msr_common(vcpu, ecx, data);
}