diff options
author | Arthur Chunqi Li <yzt356@gmail.com> | 2013-07-04 09:03:33 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-07-18 12:29:27 +0200 |
commit | a25eb114d50d6e60ef586f2466c874581c31594c (patch) | |
tree | fae1da704abe3f2ef2fbc6ff9c635118378eb8c1 /arch/x86/kvm | |
parent | KVM: nVMX: Change location of 3 functions in vmx.c (diff) | |
download | linux-a25eb114d50d6e60ef586f2466c874581c31594c.tar.xz linux-a25eb114d50d6e60ef586f2466c874581c31594c.zip |
KVM: nVMX: Set success rflags when emulate VMXON/VMXOFF in nested virt
Set rflags after successfully emulateing VMXON/VMXOFF in VMX.
Signed-off-by: Arthur Chunqi Li <yzt356@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/vmx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 264147129d20..2cd1be8ce384 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -5667,6 +5667,7 @@ static int handle_vmon(struct kvm_vcpu *vcpu) vmx->nested.vmxon = true; skip_emulated_instruction(vcpu); + nested_vmx_succeed(vcpu); return 1; } @@ -5751,6 +5752,7 @@ static int handle_vmoff(struct kvm_vcpu *vcpu) return 1; free_nested(to_vmx(vcpu)); skip_emulated_instruction(vcpu); + nested_vmx_succeed(vcpu); return 1; } |