diff options
author | Sean Christopherson <sean.j.christopherson@intel.com> | 2018-09-26 09:23:54 -0700 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-10-17 00:29:57 +0200 |
commit | c37a6116d85c7eda541769a2b3ba4c6c9164002e (patch) | |
tree | b13eebe5c8bf751e0c8c367fe8477bda619274bf /arch | |
parent | cb61de2f4819b248dfb3f1380e046ab1276c5227 (diff) | |
download | linux-stable-c37a6116d85c7eda541769a2b3ba4c6c9164002e.tar.gz linux-stable-c37a6116d85c7eda541769a2b3ba4c6c9164002e.tar.bz2 linux-stable-c37a6116d85c7eda541769a2b3ba4c6c9164002e.zip |
KVM: nVMX: do not call nested_vmx_succeed() for consistency check VMExit
EFLAGS is set to a fixed value on VMExit, calling nested_vmx_succeed()
is unnecessary and wrong.
Signed-off-by: Sean Christopherson <sean.j.christopherson@intel.com>
Reviewed-by: Jim Mattson <jmattson@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kvm/vmx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index cdc4367a554e..8374ad5a26e2 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -12787,7 +12787,6 @@ vmentry_fail_vmexit: load_vmcs12_host_state(vcpu, vmcs12); vmcs12->vm_exit_reason = exit_reason | VMX_EXIT_REASONS_FAILED_VMENTRY; vmcs12->exit_qualification = exit_qual; - nested_vmx_succeed(vcpu); if (enable_shadow_vmcs) vmx->nested.sync_shadow_vmcs = true; return 1; |