[NTOS]: Nobody uses MEMORY_AREA_SYSTEM anymore, call these MEMORY_AREA_OWNED_BY_ARM3 for now. We'll have to sync this code with x86 later anyway.

svn path=/trunk/; revision=48989
This commit is contained in:
Sir Richard 2010-10-05 04:58:26 +00:00
parent 35beef2751
commit b5e84d5641

View file

@ -870,7 +870,7 @@ MiInitPageDirectoryMap(VOID)
BoundaryAddressMultiple.QuadPart = 0;
BaseAddress = (PVOID)PTE_BASE;
Status = MmCreateMemoryArea(MmGetKernelAddressSpace(),
MEMORY_AREA_SYSTEM,
MEMORY_AREA_OWNED_BY_ARM3,
&BaseAddress,
0x1000000,
PAGE_READWRITE,
@ -885,7 +885,7 @@ MiInitPageDirectoryMap(VOID)
//
BaseAddress = (PVOID)PDE_BASE;
Status = MmCreateMemoryArea(MmGetKernelAddressSpace(),
MEMORY_AREA_SYSTEM,
MEMORY_AREA_OWNED_BY_ARM3,
&BaseAddress,
0x100000,
PAGE_READWRITE,
@ -900,7 +900,7 @@ MiInitPageDirectoryMap(VOID)
//
BaseAddress = (PVOID)HYPER_SPACE;
Status = MmCreateMemoryArea(MmGetKernelAddressSpace(),
MEMORY_AREA_SYSTEM,
MEMORY_AREA_OWNED_BY_ARM3,
&BaseAddress,
PAGE_SIZE,
PAGE_READWRITE,