aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2010-01-10 12:19:20 +0200
committerMarcelo Tosatti <mtosatti@redhat.com>2010-03-01 12:35:51 -0300
commit4610c83cdc8bff04f2f22883749f716b1ccc502f (patch)
treec88be0b18b3163964dca22a0b7c20bd0c78c6914
parentd225157bc6a442b1214882635fbf287d7d0e8133 (diff)
downloadkernel_samsung_espresso10-4610c83cdc8bff04f2f22883749f716b1ccc502f.zip
kernel_samsung_espresso10-4610c83cdc8bff04f2f22883749f716b1ccc502f.tar.gz
kernel_samsung_espresso10-4610c83cdc8bff04f2f22883749f716b1ccc502f.tar.bz2
KVM: SVM: Lazy fpu with npt
Now that we can allow the guest to play with cr0 when the fpu is loaded, we can enable lazy fpu when npt is in use. Acked-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--arch/x86/kvm/svm.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index 83c7ab1..8d7cb62 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -2588,8 +2588,6 @@ static void svm_flush_tlb(struct kvm_vcpu *vcpu)
static void svm_prepare_guest_switch(struct kvm_vcpu *vcpu)
{
- if (npt_enabled)
- vcpu->fpu_active = 1;
}
static inline void sync_cr8_to_lapic(struct kvm_vcpu *vcpu)
@@ -2928,12 +2926,6 @@ static void svm_fpu_deactivate(struct kvm_vcpu *vcpu)
{
struct vcpu_svm *svm = to_svm(vcpu);
- if (npt_enabled) {
- /* hack: npt requires active fpu at this time */
- vcpu->fpu_active = 1;
- return;
- }
-
update_cr0_intercept(svm);
svm->vmcb->control.intercept_exceptions |= 1 << NM_VECTOR;
}