Changeset 48443 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 12, 2013 9:46:35 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r48436 r48443 6262 6262 HMVMX_ASSERT_PREEMPT_SAFE(); 6263 6263 6264 if (RT_UNLIKELY(rcExit == VERR_VMX_INVALID_GUEST_STATE)) 6265 { 6266 /* We've done what is required in hmR0VmxExitErrInvalidGuestState(). We're not going to continue guest execution... */ 6267 return VINF_SUCCESS; 6268 } 6269 else if (RT_UNLIKELY(rcExit == VERR_VMX_INVALID_VMCS_PTR)) 6264 if (RT_UNLIKELY(rcExit == VERR_VMX_INVALID_VMCS_PTR)) 6270 6265 { 6271 6266 VMXGetActivatedVmcs(&pVCpu->hm.s.vmx.LastError.u64VMCSPhys); … … 6273 6268 pVCpu->hm.s.vmx.LastError.idEnteredCpu = pVCpu->hm.s.idEnteredCpu; 6274 6269 /* LastError.idCurrentCpu was updated in hmR0VmxPreRunGuestCommitted(). */ 6275 return VINF_SUCCESS;6276 6270 } 6277 6271
Note:
See TracChangeset
for help on using the changeset viewer.