Changeset 22710 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 2, 2009 11:48:57 AM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r22709 r22710 377 377 if ( PGM_PAGE_HAS_ACTIVE_HANDLERS(pPage) 378 378 #ifdef PGMPOOL_WITH_OPTIMIZED_DIRTY_PT 379 || pgmPoolIsDirtyPage(pVM, GCPhys)379 || pgmPoolIsDirtyPage(pVM, *pGCPhys) 380 380 #endif 381 381 ) -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22709 r22710 1617 1617 bool pgmPoolIsDirtyPage(PVM pVM, RTGCPHYS GCPhys) 1618 1618 { 1619 PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool); 1619 1620 if (!pPool->cDirtyPages) 1620 1621 return false; … … 1622 1623 for (unsigned i = 0; i < RT_ELEMENTS(pPool->aIdxDirtyPages); i++) 1623 1624 { 1624 if (pPool->aIdxDirtyPages[i dxSlot] != NIL_PGMPOOL_IDX)1625 if (pPool->aIdxDirtyPages[i] != NIL_PGMPOOL_IDX) 1625 1626 { 1626 1627 PPGMPOOLPAGE pPage; 1627 unsigned idxPage = pPool->aIdxDirtyPages[i dxSlot];1628 unsigned idxPage = pPool->aIdxDirtyPages[i]; 1628 1629 AssertRelease(idxPage != NIL_PGMPOOL_IDX); 1629 1630
Note:
See TracChangeset
for help on using the changeset viewer.