- Fix an incorrect (should be 1024) ASSERT by removing it entirely (no real point to having it).

- Fixes issues on systems where it turns out the PDE-alignment actually goes beyond 4 million bytes (since 4MB is a little bit more, and is the maximum alignment-based boost you can get).


svn path=/trunk/; revision=41687
This commit is contained in:
ReactOS Portable Systems Group 2009-06-29 17:17:22 +00:00
parent 6ac24476f4
commit 2d48fb35be

View file

@ -650,7 +650,6 @@ MmArmInitSystem(IN ULONG Phase,
MmNumberOfSystemPtes = MiAddressToPte(MmNonPagedPoolExpansionStart) -
PointerPte;
MmNumberOfSystemPtes--;
ASSERT((MmNumberOfSystemPtes - OldCount) <= 1000);
DPRINT1("Final System PTE count: %d (%d bytes)\n",
MmNumberOfSystemPtes, MmNumberOfSystemPtes * PAGE_SIZE);