mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:55:41 +00:00
[NTOSKRNL]
Fix value of MmUserProbeAddress, which is MI_USER_PROBE_ADDRESS (0x7FFF0000) and not MI_HIGHEST_USER_ADDRESS (0x7FFEFFFF)! svn path=/trunk/; revision=58049
This commit is contained in:
parent
73a5534922
commit
df929fa5cf
1 changed files with 1 additions and 1 deletions
|
@ -2043,7 +2043,7 @@ MmArmInitSystem(IN ULONG Phase,
|
|||
// Define the basic user vs. kernel address space separation
|
||||
//
|
||||
MmSystemRangeStart = (PVOID)MI_DEFAULT_SYSTEM_RANGE_START;
|
||||
MmUserProbeAddress = (ULONG_PTR)MI_HIGHEST_USER_ADDRESS;
|
||||
MmUserProbeAddress = (ULONG_PTR)MI_USER_PROBE_ADDRESS;
|
||||
MmHighestUserAddress = (PVOID)MI_HIGHEST_USER_ADDRESS;
|
||||
|
||||
/* Highest PTE and PDE based on the addresses above */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue