mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 05:58:13 +00:00
[NTOS:MM]
- Set aside some additional system PTEs if special pool is enabled CORE-8680 svn path=/trunk/; revision=66235
This commit is contained in:
parent
d0376b2093
commit
f1d9eded2c
1 changed files with 7 additions and 0 deletions
|
@ -2181,6 +2181,13 @@ MmArmInitSystem(IN ULONG Phase,
|
|||
//
|
||||
MmNumberOfSystemPtes <<= 1;
|
||||
}
|
||||
if (MmSpecialPoolTag != 0 && MmSpecialPoolTag != -1)
|
||||
{
|
||||
//
|
||||
// Add some extra PTEs for special pool
|
||||
//
|
||||
MmNumberOfSystemPtes += 0x6000;
|
||||
}
|
||||
}
|
||||
|
||||
DPRINT("System PTE count has been tuned to %lu (%lu bytes)\n",
|
||||
|
|
Loading…
Reference in a new issue