]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
KVM: x86: Fix MSR_IA32_BNDCFGS in msrs_to_save
authorNadav Amit <namit@cs.technion.ac.il>
Sun, 12 Apr 2015 18:47:15 +0000 (21:47 +0300)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 14 Apr 2015 16:09:50 +0000 (18:09 +0200)
commit9e9c3fe40bcd28e3f98f0ad8408435f4503f2781
tree90aeef820e057dbf24566306b15b44ce6ec3833e
parentb79013b2449c23f1f505bdf39c5a6c330338b244
KVM: x86: Fix MSR_IA32_BNDCFGS in msrs_to_save

kvm_init_msr_list is currently called before hardware_setup. As a result,
vmx_mpx_supported always returns false when kvm_init_msr_list checks whether to
save MSR_IA32_BNDCFGS.

Move kvm_init_msr_list after vmx_hardware_setup is called to fix this issue.

Signed-off-by: Nadav Amit <namit@cs.technion.ac.il>
Message-Id: <1428864435-4732-1-git-send-email-namit@cs.technion.ac.il>
Cc: stable@vger.kernel.org # 3.15+
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/x86.c