projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5ca8e5
)
KVM: VMX: Use cached VM_EXIT_INTR_INFO in handle_exception
author
Avi Kivity
<avi@redhat.com>
Mon, 7 Mar 2011 15:39:45 +0000
(17:39 +0200)
committer
Avi 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
patch
|
blob
|
history
diff --git
a/arch/x86/kvm/vmx.c
b/arch/x86/kvm/vmx.c
index
f95f48b
..
1bdb49d
100644
(file)
--- a/
arch/x86/kvm/vmx.c
+++ b/
arch/x86/kvm/vmx.c
@@
-3118,7
+3118,7
@@
static int handle_exception(struct kvm_vcpu *vcpu)
enum emulation_result er;
vect_info = vmx->idt_vectoring_info;
- intr_info = vm
cs_read32(VM_EXIT_INTR_INFO)
;
+ intr_info = vm
x->exit_intr_info
;
if (is_machine_check(intr_info))
return handle_machine_check(vcpu);