Changeset 91580 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Oct 6, 2021 7:22:04 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r91308 r91580 2924 2924 { 2925 2925 AssertMsg(pCtx->cr3 == pVmcbGuest->u64CR3, ("cr3=%#RX64 vmcb_cr3=%#RX64\n", pCtx->cr3, pVmcbGuest->u64CR3)); 2926 PGMUpdateCR3(pVCpu, pCtx->cr3 );2926 PGMUpdateCR3(pVCpu, pCtx->cr3, false /* fPdpesMapped */); 2927 2927 } 2928 2928 } … … 3994 3994 /* Could happen as a result of longjump. */ 3995 3995 if (VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_HM_UPDATE_CR3)) 3996 PGMUpdateCR3(pVCpu, CPUMGetGuestCR3(pVCpu) );3996 PGMUpdateCR3(pVCpu, CPUMGetGuestCR3(pVCpu), false /* fPdpesMapped */); 3997 3997 3998 3998 /* Update pending interrupts into the APIC's IRR. */
Note:
See TracChangeset
for help on using the changeset viewer.