]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
KVM: VMX: Avoid rearranging switched guest msrs while they are loaded
authorAvi Kivity <avi@qumranet.com>
Wed, 27 Feb 2008 14:06:57 +0000 (16:06 +0200)
committerAvi Kivity <avi@qumranet.com>
Tue, 4 Mar 2008 13:19:50 +0000 (15:19 +0200)
commit33f9c505ed5c83bd8a07877e5b4628308f4cc099
treec30b53d4b744176fd3fa385b3e4282d4b588996f
parentf7d9c7b7b902f9f532738d47593d9679b0b182d9
KVM: VMX: Avoid rearranging switched guest msrs while they are loaded

KVM tries to run as much as possible with the guest msrs loaded instead of
host msrs, since switching msrs is very expensive.  It also tries to minimize
the number of msrs switched according to the guest mode; for example,
MSR_LSTAR is needed only by long mode guests.  This optimization is done by
setup_msrs().

However, we must not change which msrs are switched while we are running with
guest msr state:

 - switch to guest msr state
 - call setup_msrs(), removing some msrs from the list
 - switch to host msr state, leaving a few guest msrs loaded

An easy way to trigger this is to kexec an x86_64 linux guest.  Early during
setup, the guest will switch EFER to not include SCE.  KVM will stop saving
MSR_LSTAR, and on the next msr switch it will leave the guest LSTAR loaded.
The next host syscall will end up in a random location in the kernel.

Fix by reloading the host msrs before changing the msr list.

Signed-off-by: Avi Kivity <avi@qumranet.com>
arch/x86/kvm/vmx.c