OSDN Git Service

KVM: x86: svm: report MSR_IA32_MCG_EXT_CTL as unsupported
authorVitaly Kuznetsov <vkuznets@redhat.com>
Wed, 19 Dec 2018 11:06:13 +0000 (12:06 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 21 Dec 2018 10:28:20 +0000 (11:28 +0100)
AMD doesn't seem to implement MSR_IA32_MCG_EXT_CTL and svm code in kvm
knows nothing about it, however, this MSR is among emulated_msrs and
thus returned with KVM_GET_MSR_INDEX_LIST. The consequent KVM_GET_MSRS,
of course, fails.

Report the MSR as unsupported to not confuse userspace.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
arch/x86/kvm/svm.c

index e4f18a3..c4377f0 100644 (file)
@@ -5840,6 +5840,13 @@ static bool svm_cpu_has_accelerated_tpr(void)
 
 static bool svm_has_emulated_msr(int index)
 {
+       switch (index) {
+       case MSR_IA32_MCG_EXT_CTL:
+               return false;
+       default:
+               break;
+       }
+
        return true;
 }