diff options
author | Nadav Har'El <nyh@il.ibm.com> | 2011-05-25 20:11:03 (GMT) |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-07-12 08:45:15 (GMT) |
commit | 99e65e805dea4df061aa4038211112aa96416412 (patch) | |
tree | 5783fc09f0e0a5331d9ec0e8ca815aa59f58b393 | |
parent | cd232ad02f00286c3f8c9df30948da17212ef905 (diff) | |
download | linux-fsl-qoriq-99e65e805dea4df061aa4038211112aa96416412.tar.xz |
KVM: nVMX: No need for handle_vmx_insn function any more
Before nested VMX support, the exit handler for a guest executing a VMX
instruction (vmclear, vmlaunch, vmptrld, vmptrst, vmread, vmread, vmresume,
vmwrite, vmon, vmoff), was handle_vmx_insn(). This handler simply threw a #UD
exception. Now that all these exit reasons are properly handled (and emulate
the respective VMX instruction), nothing calls this dummy handler and it can
be removed.
Signed-off-by: Nadav Har'El <nyh@il.ibm.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
-rw-r--r-- | arch/x86/kvm/vmx.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 1a8b328..f8dccb9 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -4309,12 +4309,6 @@ static int handle_vmcall(struct kvm_vcpu *vcpu) return 1; } -static int handle_vmx_insn(struct kvm_vcpu *vcpu) -{ - kvm_queue_exception(vcpu, UD_VECTOR); - return 1; -} - static int handle_invd(struct kvm_vcpu *vcpu) { return emulate_instruction(vcpu, 0) == EMULATE_DONE; |