Changeset 27282 in vbox
- Timestamp:
- Mar 11, 2010 1:42:03 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r27281 r27282 1692 1692 PGM_REG_COUNTER(&pPGM->StatTrackAliasedLots, "/PGM/Track/AliasedLots", "The number of times we're hitting pages which has overflowed cRef2"); 1693 1693 PGM_REG_COUNTER(&pPGM->StatTrackOverflows, "/PGM/Track/Overflows", "The number of times the extent list grows too long."); 1694 PGM_REG_COUNTER(&pPGM->StatTrackNoExtentsLeft, "/PGM/Track/NoExtentLeft", "The number of times the extent list was exhausted."); 1694 1695 PGM_REG_PROFILE(&pPGM->StatTrackDeref, "/PGM/Track/Deref", "Profiling of SyncPageWorkerTrackDeref (expensive)."); 1695 1696 -
trunk/src/VBox/VMM/PGMInternal.h
r27271 r27282 2860 2860 STAMCOUNTER StatTrackAliasedMany; /**< The number of times we're tracking using cRef2. */ 2861 2861 STAMCOUNTER StatTrackAliasedLots; /**< The number of times we're hitting pages which has overflowed cRef2. */ 2862 STAMCOUNTER StatTrackNoExtentsLeft; /**< The number of times the extent list was exhausted. */ 2862 2863 STAMCOUNTER StatTrackOverflows; /**< The number of times the extent list grows to long. */ 2863 2864 STAMPROFILE StatTrackDeref; /**< Profiling of SyncPageWorkerTrackDeref (expensive). */ -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r27271 r27282 3828 3828 if (!pNew) 3829 3829 { 3830 STAM_COUNTER_INC(&pVM->pgm.s.StatTrack Overflows);3830 STAM_COUNTER_INC(&pVM->pgm.s.StatTrackNoExtentsLeft); 3831 3831 pgmPoolTrackPhysExtFreeList(pVM, iPhysExtStart); 3832 3832 LogFlow(("pgmPoolTrackPhysExtInsert: pgmPoolTrackPhysExtAlloc failed iShwPT=%d\n", iShwPT));
Note:
See TracChangeset
for help on using the changeset viewer.