Changeset 17149 in vbox
- Timestamp:
- Feb 26, 2009 10:27:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r17148 r17149 1581 1581 if ((PGMPOOLKIND)pPage->enmKind == enmKind) 1582 1582 { 1583 /* Put it at the start of the use list to make sure pgmPoolTrackAddUser 1584 * doesn't flush it in case there are no more free use records. 1585 */ 1586 pgmPoolCacheUsed(pPool, pPage); 1587 1583 1588 int rc = pgmPoolTrackAddUser(pPool, pPage, iUser, iUserTable); 1584 1589 if (RT_SUCCESS(rc)) 1585 1590 { 1591 Assert((PGMPOOLKIND)pPage->enmKind == enmKind); 1586 1592 *ppPage = pPage; 1587 1593 STAM_COUNTER_INC(&pPool->StatCacheHits);
Note:
See TracChangeset
for help on using the changeset viewer.