Changeset 22510 in vbox
- Timestamp:
- Aug 27, 2009 12:01:45 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r22473 r22510 1860 1860 /** Times we've called pgmPoolAddDirtyPage. */ 1861 1861 STAMCOUNTER StatDirtyPage; 1862 /** Times we've had to flush duplicates for dirty page management. */ 1863 STAMCOUNTER StatDirtyPageDupFlush; 1862 1864 1863 1865 /** The high wather mark for cModifiedPages. */ -
trunk/src/VBox/VMM/PGMPool.cpp
r22473 r22510 364 364 STAM_REG(pVM, &pPool->StatResetDirtyPages, STAMTYPE_COUNTER, "/PGM/Pool/Monitor/Dirty/Resets", STAMUNIT_OCCURENCES, "Times we've called pgmPoolResetDirtyPages (and there were dirty page)."); 365 365 STAM_REG(pVM, &pPool->StatDirtyPage, STAMTYPE_COUNTER, "/PGM/Pool/Monitor/Dirty/Pages", STAMUNIT_OCCURENCES, "Times we've called pgmPoolAddDirtyPage."); 366 STAM_REG(pVM, &pPool->StatDirtyPageDupFlush, STAMTYPE_COUNTER, "/PGM/Pool/Monitor/Dirty/FlushDup", STAMUNIT_OCCURENCES, "Times we've had to flush duplicates for dirty page management."); 366 367 367 368 # endif -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22507 r22510 1306 1306 if (pPageHead != pPage) 1307 1307 { 1308 STAM_COUNTER_INC(&pPool->StatDirtyPageDupFlush); 1308 1309 Log(("Flush duplicate page idx=%d GCPhys=%RGp type=%s\n", pPageHead->idx, pPageHead->GCPhys, pgmPoolPoolKindToStr(pPageHead->enmKind))); 1309 1310 int rc2 = pgmPoolFlushPage(pPool, pPageHead);
Note:
See TracChangeset
for help on using the changeset viewer.