- Timestamp:
- Oct 22, 2021 3:21:40 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r91904 r91986 3827 3827 #endif /* VBOX_STRICT */ 3828 3828 3829 3830 #ifdef VBOX_WITH_NESTED_HWVIRT_VMX_EPT 3831 /** 3832 * Updates PGM's copy of the guest's EPT pointer. 3833 * 3834 * @param pVCpu The cross context virtual CPU structure. 3835 * @param uEptPtr The EPT pointer. 3836 * 3837 * @remarks This can be called as part of VM-entry so we might be in the midst of 3838 * switching to VMX non-root mode. 3839 */ 3840 VMM_INT_DECL(void) PGMSetGuestEptPtr(PVMCPUCC pVCpu, uint64_t uEptPtr) 3841 { 3842 pVCpu->pgm.s.uEptPtr = uEptPtr; 3843 } 3844 #endif 3845
Note:
See TracChangeset
for help on using the changeset viewer.