diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2019-02-14 17:39:43 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2019-02-14 17:39:43 +0000 |
commit | bb0e012f196c520476cc74c387e556b49ef5a0e0 (patch) | |
tree | 531c50c02518d864d90a3e1c4b7c9ff47a16232f | |
parent | 7290d16af50ac33004737c68bc3d5607513d16b6 (diff) | |
download | VirtualBox-svn-bb0e012f196c520476cc74c387e556b49ef5a0e0.tar.gz |
VMM/IEM: Nested VMX: bugref:9180 Fix clearing the MTF force-flag (typo).
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@77319 cfe28804-0f27-0410-a406-dd0f0b0b656f
-rw-r--r-- | src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h b/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h index 26480b86565..304035a6d4a 100644 --- a/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h +++ b/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h @@ -3094,7 +3094,7 @@ IEM_STATIC VBOXSTRICTRC iemVmxVmexitMtf(PVMCPU pVCpu) */ /* Clear the force-flag indicating that monitor-trap flag is no longer active. */ - VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_VMX_PREEMPT_TIMER); + VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_VMX_MTF); /* Cause the MTF VM-exit. The VM-exit qualification MBZ. */ return iemVmxVmexit(pVCpu, VMX_EXIT_MTF); |