]> Git Repo - linux.git/commitdiff
kvm, vmx: Fix lazy FPU on nested guest
authorAnthoine Bourgeois <[email protected]>
Wed, 13 Nov 2013 10:45:37 +0000 (11:45 +0100)
committerPaolo Bonzini <[email protected]>
Wed, 13 Nov 2013 17:46:54 +0000 (18:46 +0100)
If a nested guest does a NM fault but its CR0 doesn't contain the TS
flag (because it was already cleared by the guest with L1 aid) then we
have to activate FPU ourselves in L0 and then continue to L2. If TS flag
is set then we fallback on the previous behavior, forward the fault to
L1 if it asked for.

Signed-off-by: Anthoine Bourgeois <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
arch/x86/kvm/vmx.c

index e293a62a11d68b00deef18af05b729872ce7a14a..b2fe1c252f35f92e3b6707406998738a9275c8d2 100644 (file)
@@ -6643,6 +6643,9 @@ static bool nested_vmx_exit_handled(struct kvm_vcpu *vcpu)
                        return 0;
                else if (is_page_fault(intr_info))
                        return enable_ept;
+               else if (is_no_device(intr_info) &&
+                        !(nested_read_cr0(vmcs12) & X86_CR0_TS))
+                       return 0;
                return vmcs12->exception_bitmap &
                                (1u << (intr_info & INTR_INFO_VECTOR_MASK));
        case EXIT_REASON_EXTERNAL_INTERRUPT:
This page took 0.056365 seconds and 4 git commands to generate.