Author: ros-arm-bringup
Date: Thu Oct 15 06:03:37 2009
New Revision: 43471
URL:
http://svn.reactos.org/svn/reactos?rev=43471&view=rev
Log:
- Remove calls to MmMarkPageMapped/UnMapped -- these APIs don't exist anymore.
- Unbreaks part of kernel ARM build.
Modified:
trunk/reactos/ntoskrnl/mm/arm/stubs.c
Modified: trunk/reactos/ntoskrnl/mm/arm/stubs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/arm/stubs.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/arm/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/arm/stubs.c [iso-8859-1] Thu Oct 15 06:03:37 2009
@@ -511,11 +511,6 @@
OldPdeOffset = PdeOffset;
//
- // Mark it as mapped
- //
- if (MarkAsMapped) MmMarkPageMapped(*Pages);
-
- //
// Set the PFN
//
TempPte.u.Hard.PageFrameNumber = *Pages++;
@@ -676,7 +671,6 @@
// Unmap the PFN
//
Pfn = Pte.u.Hard.PageFrameNumber;
- if (Pfn) MmMarkPageUnmapped(Pfn);
//
// Release the PFN if it was ours