From 2e4b0e9661ddf8348b7631805b94e4d9950fc38b Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Wed, 22 Oct 2014 13:18:10 +0000 Subject: [PATCH] [NTOS:MM] - Add missing call to ExpSeedHotTags svn path=/trunk/; revision=64888 --- reactos/ntoskrnl/mm/ARM3/expool.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/mm/ARM3/expool.c b/reactos/ntoskrnl/mm/ARM3/expool.c index 68063b2b679..825dbddd763 100644 --- a/reactos/ntoskrnl/mm/ARM3/expool.c +++ b/reactos/ntoskrnl/mm/ARM3/expool.c @@ -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 //