Changeset 64837 in vbox
- Timestamp:
- Dec 12, 2016 5:03:28 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r64823 r64837 8946 8946 pVmxTransient->fVMEntryFailed = VMX_ENTRY_INTERRUPTION_INFO_IS_VALID(pVmxTransient->uEntryIntInfo); 8947 8947 8948 /* Update the VM-exit history array. */8949 HMCPU_EXIT_HISTORY_ADD(pVCpu, pVmxTransient->uExitReason);8950 8951 8948 /* If the VMLAUNCH/VMRESUME failed, we can bail out early. This does -not- cover VMX_EXIT_ERR_*. */ 8952 8949 if (RT_UNLIKELY(rcVMRun != VINF_SUCCESS)) … … 8956 8953 return; 8957 8954 } 8955 8956 /* Update the VM-exit history array only if the world-switch was successful. */ 8957 HMCPU_EXIT_HISTORY_ADD(pVCpu, pVmxTransient->uExitReason); 8958 8958 8959 8959 if (RT_LIKELY(!pVmxTransient->fVMEntryFailed))
Note:
See TracChangeset
for help on using the changeset viewer.