]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
kvm: vmx: Fix entry number check for add_atomic_switch_msr()
authorXiaoyao Li <xiaoyao.li@linux.intel.com>
Thu, 14 Feb 2019 04:08:58 +0000 (12:08 +0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 14 Feb 2019 15:22:20 +0000 (16:22 +0100)
Commit ca83b4a7f2d068da79a0 ("x86/KVM/VMX: Add find_msr() helper function")
introduces the helper function find_msr(), which returns -ENOENT when
not find the msr in vmx->msr_autoload.guest/host. Correct checking contion
of no more available entry in vmx->msr_autoload.

Fixes: ca83b4a7f2d0 ("x86/KVM/VMX: Add find_msr() helper function")
Cc: stable@vger.kernel.org
Signed-off-by: Xiaoyao Li <xiaoyao.li@linux.intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/vmx/vmx.c

index b9a27fc7c0be32d09789124b944861bf3dcd5b2b..30a6bcd735ec36e4163b6e9a72ce26ff3f6b356a 100644 (file)
@@ -863,7 +863,8 @@ static void add_atomic_switch_msr(struct vcpu_vmx *vmx, unsigned msr,
        if (!entry_only)
                j = find_msr(&m->host, msr);
 
-       if (i == NR_AUTOLOAD_MSRS || j == NR_AUTOLOAD_MSRS) {
+       if ((i < 0 && m->guest.nr == NR_AUTOLOAD_MSRS) ||
+               (j < 0 &&  m->host.nr == NR_AUTOLOAD_MSRS)) {
                printk_once(KERN_WARNING "Not enough msr switch entries. "
                                "Can't add msr %x\n", msr);
                return;