Changeset 9596 in vbox
- Timestamp:
- Jun 11, 2008 10:03:56 AM (17 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r9570 r9596 1369 1369 /** Shw: 64-bit page directory pointer table; Gst: 64-bit page directory pointer table. */ 1370 1370 PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT, 1371 /** Shw: 64-bit page directory table; Gst: 64-bit page directory table. */1372 PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD,1373 1371 1374 1372 /** Shw: Root 32-bit page directory. */ -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r9589 r9596 777 777 778 778 Assert(!(pPdpe->u & X86_PDPE_PG_MASK)); 779 rc = pgmPoolAlloc(pVM, pPdptGst->a[iPdPt].u & X86_PDPE_PG_MASK, PGMPOOLKIND_ 64BIT_PD_FOR_64BIT_PD, PGMPOOL_IDX_PDPT, iPdPt, &pShwPage);779 rc = pgmPoolAlloc(pVM, pPdptGst->a[iPdPt].u & X86_PDPE_PG_MASK, PGMPOOLKIND_PAE_PD_FOR_PAE_PD, PGMPOOL_IDX_PDPT, iPdPt, &pShwPage); 780 780 if (rc == VERR_PGM_POOL_FLUSHED) 781 781 return VINF_PGM_SYNC_CR3;
Note:
See TracChangeset
for help on using the changeset viewer.