Changeset 86470 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 7, 2020 4:53:19 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140779
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r86462 r86470 3364 3364 3365 3365 const uint64_t u64 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PDE4M_P | X86_PDE4M_PS; 3366 PX86PD pPD = (PX86PD)PGMPOOL_PAGE_2_PTR(pVM, pPage);3366 PX86PDPAE pPD = (PX86PDPAE)PGMPOOL_PAGE_2_PTR(pVM, pPage); 3367 3367 3368 3368 if ((pPD->a[iPte].u & (X86_PDE2M_PAE_PG_MASK | X86_PDE4M_P | X86_PDE4M_PS)) == u64) -
trunk/src/VBox/VMM/VMMR3/PGMPool.cpp
r86461 r86470 534 534 */ 535 535 #ifdef PGM_WITH_LARGE_PAGES 536 case PGMPOOLKIND_ EPT_PD_FOR_PHYS:/* Large pages reference 2 MB of physical memory, so we must clear them. */536 case PGMPOOLKIND_PAE_PD_PHYS: /* Large pages reference 2 MB of physical memory, so we must clear them. */ 537 537 if (pPage->cPresent) 538 538 { … … 556 556 goto default_case; 557 557 558 case PGMPOOLKIND_ PAE_PD_PHYS:/* Large pages reference 2 MB of physical memory, so we must clear them. */558 case PGMPOOLKIND_EPT_PD_FOR_PHYS: /* Large pages reference 2 MB of physical memory, so we must clear them. */ 559 559 if (pPage->cPresent) 560 560 {
Note:
See TracChangeset
for help on using the changeset viewer.