Changeset 87472 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jan 28, 2021 7:59:55 PM (4 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMAll.cpp
r82968 r87472 791 791 if (enmGuestMode == PGMMODE_REAL) 792 792 { 793 PVMXVMCSINFO pVmcsInfo = hmGetVmxActiveVmcsInfo(pVCpu);794 pVmcsInfo ->fWasInRealMode = true;793 PVMXVMCSINFOSHARED pVmcsInfoShared = hmGetVmxActiveVmcsInfoShared(pVCpu); 794 pVmcsInfoShared->fWasInRealMode = true; 795 795 } 796 796 -
trunk/src/VBox/VMM/VMMAll/HMVMXAll.cpp
r82968 r87472 667 667 * (all sorts of RPL & DPL assumptions). 668 668 */ 669 PCVMXVMCSINFO pVmcsInfo = hmGetVmxActiveVmcsInfo(pVCpu);669 PCVMXVMCSINFOSHARED pVmcsInfo = hmGetVmxActiveVmcsInfoShared(pVCpu); 670 670 if (pVmcsInfo->fWasInRealMode) 671 671 { … … 1103 1103 * @remarks This function may be called with preemption or interrupts disabled! 1104 1104 */ 1105 VMM_INT_DECL(PVMXVMCSINFO ) hmGetVmxActiveVmcsInfo(PVMCPU pVCpu)1105 VMM_INT_DECL(PVMXVMCSINFOSHARED) hmGetVmxActiveVmcsInfoShared(PVMCPU pVCpu) 1106 1106 { 1107 1107 if (!pVCpu->hm.s.vmx.fSwitchedToNstGstVmcs)
Note:
See TracChangeset
for help on using the changeset viewer.