Changeset 20487 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 12, 2009 8:54:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r20374 r20487 3127 3127 paPhysExts[iPhysExt].aidx[2] = iShwPT; 3128 3128 STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliasedMany); 3129 LogFlow(("pgmPoolTrackPhysExt Addref: %d:{,,%d}\n", iPhysExt, iShwPT));3129 LogFlow(("pgmPoolTrackPhysExtInsert: %d:{,,%d}\n", iPhysExt, iShwPT)); 3130 3130 return PGMPOOL_TD_MAKE(PGMPOOL_TD_CREFS_PHYSEXT, iPhysExt); 3131 3131 } … … 3142 3142 paPhysExts[iPhysExt].aidx[i] = iShwPT; 3143 3143 STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliasedMany); 3144 LogFlow(("pgmPoolTrackPhysExt Addref: %d:{%d} i=%d cMax=%d\n", iPhysExt, iShwPT, i, cMax));3144 LogFlow(("pgmPoolTrackPhysExtInsert: %d:{%d} i=%d cMax=%d\n", iPhysExt, iShwPT, i, cMax)); 3145 3145 return PGMPOOL_TD_MAKE(PGMPOOL_TD_CREFS_PHYSEXT, iPhysExtStart); 3146 3146 } … … 3149 3149 STAM_COUNTER_INC(&pVM->pgm.s.StatTrackOverflows); 3150 3150 pgmPoolTrackPhysExtFreeList(pVM, iPhysExtStart); 3151 LogFlow(("pgmPoolTrackPhysExt Addref: overflow (1) iShwPT=%d\n", iShwPT));3151 LogFlow(("pgmPoolTrackPhysExtInsert: overflow (1) iShwPT=%d\n", iShwPT)); 3152 3152 return PGMPOOL_TD_MAKE(PGMPOOL_TD_CREFS_PHYSEXT, PGMPOOL_TD_IDX_OVERFLOWED); 3153 3153 } … … 3160 3160 STAM_COUNTER_INC(&pVM->pgm.s.StatTrackOverflows); 3161 3161 pgmPoolTrackPhysExtFreeList(pVM, iPhysExtStart); 3162 LogFlow(("pgmPoolTrackPhysExtInsert: pgmPoolTrackPhysExtAlloc failed iShwPT=%d\n", iShwPT)); 3162 3163 return PGMPOOL_TD_MAKE(PGMPOOL_TD_CREFS_PHYSEXT, PGMPOOL_TD_IDX_OVERFLOWED); 3163 3164 } 3164 3165 pNew->iNext = iPhysExtStart; 3165 3166 pNew->aidx[0] = iShwPT; 3166 LogFlow(("pgmPoolTrackPhysExt Addref: added new extent %d:{%d}->%d\n", iPhysExt, iShwPT, iPhysExtStart));3167 LogFlow(("pgmPoolTrackPhysExtInsert: added new extent %d:{%d}->%d\n", iPhysExt, iShwPT, iPhysExtStart)); 3167 3168 return PGMPOOL_TD_MAKE(PGMPOOL_TD_CREFS_PHYSEXT, iPhysExt); 3168 3169 }
Note:
See TracChangeset
for help on using the changeset viewer.