Changeset 69786 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Nov 21, 2017 6:49:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r69764 r69786 4183 4183 hmR0SvmSaveGuestState(pVCpu, pMixedCtx, pVmcbNstGst); /* Save the nested-guest state from the VMCB to the 4184 4184 guest-CPU context. */ 4185 4186 HMSvmNstGstVmExitNotify(pVCpu, pMixedCtx); /* Restore modified VMCB fields for now, see @bugref{7243#c52} .*/ 4185 4187 } 4186 4188 #endif … … 6375 6377 * Lazy DR0-3 loading. 6376 6378 */ 6377 if (!pSvmTransient->fWasHyperDebugStateActive) 6379 if ( !pSvmTransient->fWasHyperDebugStateActive 6380 #ifdef VBOX_WITH_NESTED_HWVIRT 6381 && !CPUMIsGuestInSvmNestedHwVirtMode(pCtx)) /** @todo implement single-stepping when executing a nested-guest. */ 6382 #endif 6378 6383 { 6379 6384 Assert(!DBGFIsStepping(pVCpu)); Assert(!pVCpu->hm.s.fSingleInstruction);
Note:
See TracChangeset
for help on using the changeset viewer.