Commit 920c8377 authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: vmx: fix MPX detection

kvm_x86_ops is still NULL at this point.  Since kvm_init_msr_list
cannot fail, it is safe to initialize it before the call.

Fixes: 93c4adc7Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Tested-by: default avatarJet Chen <jet.chen@intel.com>
Cc: kvm@vger.kernel.org
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent f7b9ddb8
...@@ -5594,9 +5594,10 @@ int kvm_arch_init(void *opaque) ...@@ -5594,9 +5594,10 @@ int kvm_arch_init(void *opaque)
goto out_free_percpu; goto out_free_percpu;
kvm_set_mmio_spte_mask(); kvm_set_mmio_spte_mask();
kvm_init_msr_list();
kvm_x86_ops = ops; kvm_x86_ops = ops;
kvm_init_msr_list();
kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK, kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
PT_DIRTY_MASK, PT64_NX_MASK, 0); PT_DIRTY_MASK, PT64_NX_MASK, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment