- Timestamp:
- Jun 17, 2008 10:54:28 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32110
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r9752 r9753 2185 2185 2186 2186 # if PGM_GST_TYPE == PGM_GST_PAE || PGM_GST_TYPE == PGM_GST_AMD64 2187 PPGMPOOLPAGE pShwPd pte = NULL;2187 PPGMPOOLPAGE pShwPde = NULL; 2188 2188 /* Fetch the pgm pool shadow descriptor. */ 2189 pShwPdpte = pgmPoolGetPage(pPool, pPdptDst->a[iPdPte].u & SHW_PDE_PG_MASK) 2189 pShwPde = pgmPoolGetPage(pPool, pPdptDst->a[iPdPte].u & SHW_PDE_PG_MASK); 2190 Assert(pShwPde); 2190 2191 # endif 2191 2192 … … 2251 2252 # endif 2252 2253 # if PGM_GST_TYPE == PGM_GST_PAE || PGM_GST_TYPE == PGM_GST_AMD64 2253 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_PT, pShwPd pte->idx, iPDDst, &pShwPage);2254 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_PT, pShwPde->idx, iPDDst, &pShwPage); 2254 2255 # else 2255 2256 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_PT, SHW_POOL_ROOT_IDX, iPDDst, &pShwPage); … … 2264 2265 # endif 2265 2266 # if PGM_GST_TYPE == PGM_GST_PAE || PGM_GST_TYPE == PGM_GST_AMD64 2266 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_BIG, pShwPd pte->idx, iPDDst, &pShwPage);2267 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_BIG, pShwPde->idx, iPDDst, &pShwPage); 2267 2268 # else 2268 2269 rc = pgmPoolAlloc(pVM, GCPhys, BTH_PGMPOOLKIND_PT_FOR_BIG, SHW_POOL_ROOT_IDX, iPDDst, &pShwPage);
Note:
See TracChangeset
for help on using the changeset viewer.