mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:02:16 +00:00
[NTOS:MM]
- Add missing call to ExpSeedHotTags svn path=/trunk/; revision=64888
This commit is contained in:
parent
5c565a4740
commit
2e4b0e9661
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue