[NTOS:MM:X64] On x64 reserve the address range between FFFF800000000000 and FFFFF68000000000 in MiInitSystemMemoryAreas()

This commit is contained in:
Timo Kreuzer 2018-01-29 12:39:21 +01:00
parent a8ba58fbb0
commit a5d47ff72b

View file

@ -70,6 +70,11 @@ MiInitSystemMemoryAreas(VOID)
// Create all the static memory areas.
//
#ifdef _M_AMD64
// Reserved range FFFF800000000000 - FFFFF68000000000
MiCreateArm3StaticMemoryArea((PVOID)MI_REAL_SYSTEM_RANGE_START, PTE_BASE - MI_REAL_SYSTEM_RANGE_START, FALSE);
#endif /* _M_AMD64 */
// The loader mappings. The only Executable area.
MiCreateArm3StaticMemoryArea((PVOID)KSEG0_BASE, MmBootImageSize, TRUE);