Changeset 103289 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 9, 2024 11:58:56 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161583
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r102664 r103289 4169 4169 4170 4170 PVMXVMCSINFO pVmcsInfo = pVmxTransient->pVmcsInfo; 4171 bool const fResumeVM = RT_BOOL(pVmcsInfo->fVmcsState &VMX_V_VMCS_LAUNCH_STATE_LAUNCHED);4171 bool const fResumeVM = RT_BOOL(pVmcsInfo->fVmcsState == VMX_V_VMCS_LAUNCH_STATE_LAUNCHED); 4172 4172 #ifdef VBOX_WITH_STATISTICS 4173 4173 if (fResumeVM) … … 6262 6262 6263 6263 pVCpu->hmr0.s.vmx.fRestoreHostFlags |= VMX_RESTORE_HOST_REQUIRED; /* Some host state messed up by VMX needs restoring. */ 6264 pVmcsInfo->fVmcsState |= VMX_V_VMCS_LAUNCH_STATE_LAUNCHED;/* Use VMRESUME instead of VMLAUNCH in the next run. */6264 pVmcsInfo->fVmcsState = VMX_V_VMCS_LAUNCH_STATE_LAUNCHED; /* Use VMRESUME instead of VMLAUNCH in the next run. */ 6265 6265 #ifdef VBOX_STRICT 6266 6266 hmR0VmxCheckHostEferMsr(pVmcsInfo); /* Verify that the host EFER MSR wasn't modified. */ … … 6444 6444 RT_ZERO(VmxTransient); 6445 6445 VmxTransient.pVmcsInfo = hmGetVmxActiveVmcsInfo(pVCpu); 6446 Assert(!pVCpu->hmr0.s.vmx.fSwitchedToNstGstVmcs); 6446 6447 6447 6448 /* Paranoia. */ … … 6556 6557 VmxTransient.pVmcsInfo = hmGetVmxActiveVmcsInfo(pVCpu); 6557 6558 VmxTransient.fIsNestedGuest = true; 6559 Assert(pVCpu->hmr0.s.vmx.fSwitchedToNstGstVmcs); 6558 6560 6559 6561 /* Paranoia. */
Note:
See TracChangeset
for help on using the changeset viewer.