- Fix an incorrect (should be 1024) ASSERT by removing it entirely (no real point...
authorReactOS Portable Systems Group <ros-arm-bringup@svn.reactos.org>
Mon, 29 Jun 2009 17:17:22 +0000 (17:17 +0000)
committerReactOS Portable Systems Group <ros-arm-bringup@svn.reactos.org>
Mon, 29 Jun 2009 17:17:22 +0000 (17:17 +0000)
  - 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

reactos/ntoskrnl/mm/ARM3/init.c

index 40b2036..8064f13 100644 (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);