Changeset 79488 in vbox
- Timestamp:
- Jul 3, 2019 6:08:41 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r79486 r79488 14156 14156 STAM_PROFILE_ADV_START(&pVCpu->hm.s.StatExitXcptNmi, y3); 14157 14157 14158 Assert(!pVmxTransient->fIsNestedGuest);14159 14158 PVMXVMCSINFO pVmcsInfo = pVmxTransient->pVmcsInfo; 14160 14159 int rc = hmR0VmxReadExitIntInfoVmcs(pVmxTransient); … … 16295 16294 { 16296 16295 #if !defined(HMVMX_ALWAYS_TRAP_ALL_XCPTS) && !defined(HMVMX_ALWAYS_TRAP_PF) 16297 Assert(pV Cpu->hm.s.fUsingDebugLoop);16296 Assert(pVmxTransient->fIsNestedGuest || pVCpu->hm.s.fUsingDebugLoop); 16298 16297 #endif 16299 16298 pVCpu->hm.s.Event.fPending = false; /* In case it's a contributory or vectoring #PF. */ … … 17004 17003 * External interrupts: 17005 17004 * This should only happen when "acknowledge external interrupts on VM-exit" 17006 * control is set. However, we don't set it when executing guestsor17007 * nested-guest s. For nested-guests it is emulated while injecting interrupts into17005 * control is set. However, we never set this when executing a guest or 17006 * nested-guest. For nested-guests it is emulated while injecting interrupts into 17008 17007 * the guest. 17009 17008 */
Note:
See TracChangeset
for help on using the changeset viewer.