- Timestamp:
- Feb 25, 2009 1:17:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r17128 r17129 1476 1476 */ 1477 1477 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 1478 if (pgmPoolIsActiveRootPage(p VM, pPage))1478 if (pgmPoolIsActiveRootPage(pPool->CTX_SUFF(pVM), pPage)) 1479 1479 #else 1480 1480 if (PGMGetHyperCR3(pPool->CTX_SUFF(pVM)) == pPage->Core.Key) … … 3155 3155 /* Safety precaution in case we change the paging for other modes too in the future. */ 3156 3156 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 3157 Assert(!pgmPoolIsActiveRootPage(p VM, pPage));3157 Assert(!pgmPoolIsActiveRootPage(pPool->CTX_SUFF(pVM), pPage)); 3158 3158 #else 3159 3159 Assert(PGMGetHyperCR3(pPool->CTX_SUFF(pVM)) != pPage->Core.Key); … … 4358 4358 */ 4359 4359 #ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY 4360 if (pgmPoolIsActiveRootPage(p VM, pPage))4360 if (pgmPoolIsActiveRootPage(pPool->CTX_SUFF(pVM), pPage)) 4361 4361 { 4362 4362 AssertMsg( pPage->enmKind == PGMPOOLKIND_64BIT_PML4
Note:
See TracChangeset
for help on using the changeset viewer.