Changeset 92491 in vbox
- Timestamp:
- Nov 18, 2021 10:21:34 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r92458 r92491 2097 2097 RTGCPHYS GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_PAGE_MASK; 2098 2098 PPGMPAGE pPage; 2099 /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to 2100 * guest-physical address here. */ 2099 2101 int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage); 2100 2102 if (RT_SUCCESS(rc)) … … 2138 2140 RTGCPHYS GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_PAE_PAGE_MASK; 2139 2141 PPGMPAGE pPage; 2142 /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to 2143 * guest-physical address here. */ 2140 2144 int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage); 2141 2145 if (RT_SUCCESS(rc)) … … 2232 2236 RTGCPHYS GCPhysCR3 = pVCpu->pgm.s.GCPhysCR3 & X86_CR3_AMD64_PAGE_MASK; 2233 2237 PPGMPAGE pPage; 2238 /** @todo Nested VMX: convert GCPhysCR3 from nested-guest physical to 2239 * guest-physical address here. */ 2234 2240 int rc = pgmPhysGetPageEx(pVM, GCPhysCR3, &pPage); 2235 2241 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.