Changeset 22713 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 2, 2009 12:14:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22712 r22713 4782 4782 { 4783 4783 Log(("PGMPoolFlushPage: found pgm pool pages for %RGp\n", GCPhys)); 4784 STAM_COUNTER_INC(&pPool->StatForceFlushPage); 4784 #ifdef PGMPOOL_WITH_OPTIMIZED_DIRTY_PT 4785 if (pPage->fDirty) 4786 STAM_COUNTER_INC(&pPool->StatForceFlushDirtyPage); 4787 else 4788 #endif 4789 STAM_COUNTER_INC(&pPool->StatForceFlushPage); 4785 4790 Assert(!pgmPoolIsPageLocked(&pVM->pgm.s, pPage)); 4786 4791 pgmPoolMonitorChainFlush(pPool, pPage);
Note:
See TracChangeset
for help on using the changeset viewer.