KVM: VMX: Use cached VM_EXIT_INTR_INFO in handle_exception
authorAvi Kivity <avi@redhat.com>
Mon, 7 Mar 2011 15:39:45 +0000 (17:39 +0200)
committerAvi Kivity <avi@redhat.com>
Wed, 11 May 2011 11:56:56 +0000 (07:56 -0400)
vmx_complete_atomic_exit() cached it for us, so we can use it here.

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

index f95f48b..1bdb49d 100644 (file)
@@ -3118,7 +3118,7 @@ static int handle_exception(struct kvm_vcpu *vcpu)
        enum emulation_result er;
 
        vect_info = vmx->idt_vectoring_info;
-       intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
+       intr_info = vmx->exit_intr_info;
 
        if (is_machine_check(intr_info))
                return handle_machine_check(vcpu);