[NTOS:MM]

- Add missing call to ExpSeedHotTags

svn path=/trunk/; revision=64888
This commit is contained in:
Thomas Faber 2014-10-22 13:18:10 +00:00
parent 5c565a4740
commit 2e4b0e9661

View file

@ -932,7 +932,7 @@ InitializePool(IN POOL_TYPE PoolType,
}
//
// Finally, add one entry, compute the hash, and zero the table
// Add one entry, compute the hash, and zero the table
//
PoolTrackTableSize++;
PoolTrackTableMask = PoolTrackTableSize - 2;
@ -940,6 +940,11 @@ InitializePool(IN POOL_TYPE PoolType,
RtlZeroMemory(PoolTrackTable,
PoolTrackTableSize * sizeof(POOL_TRACKER_TABLE));
//
// Finally, add the most used tags to speed up those allocations
//
ExpSeedHotTags();
//
// We now do the exact same thing with the tracker table for big pages
//