mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTOSKRNL]
- "Hyperspace is local!": OK, system PTE space isn't… - Change the function name to reflect the real location of the mapping and match its partner MiUnmapPagesInZeroSpace() svn path=/trunk/; revision=54700
This commit is contained in:
parent
c073996652
commit
235496f021
3 changed files with 5 additions and 6 deletions
|
@ -1261,8 +1261,8 @@ MiUnmapPageInHyperSpace(IN PEPROCESS Process,
|
|||
|
||||
PVOID
|
||||
NTAPI
|
||||
MiMapPagesToZeroInHyperSpace(IN PMMPFN Pfn1,
|
||||
IN PFN_NUMBER NumberOfPages);
|
||||
MiMapPagesInZeroSpace(IN PMMPFN Pfn1,
|
||||
IN PFN_NUMBER NumberOfPages);
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
|
|
|
@ -111,8 +111,8 @@ MiUnmapPageInHyperSpace(IN PEPROCESS Process,
|
|||
|
||||
PVOID
|
||||
NTAPI
|
||||
MiMapPagesToZeroInHyperSpace(IN PMMPFN Pfn1,
|
||||
IN PFN_NUMBER NumberOfPages)
|
||||
MiMapPagesInZeroSpace(IN PMMPFN Pfn1,
|
||||
IN PFN_NUMBER NumberOfPages)
|
||||
{
|
||||
MMPTE TempPte;
|
||||
PMMPTE PointerPte;
|
||||
|
@ -152,7 +152,6 @@ MiMapPagesToZeroInHyperSpace(IN PMMPFN Pfn1,
|
|||
/* Choose the correct PTE to use, and which template */
|
||||
PointerPte += (Offset + 1);
|
||||
TempPte = ValidKernelPte;
|
||||
MI_MAKE_LOCAL_PAGE(&TempPte); // Hyperspace is local!
|
||||
|
||||
/* Make sure the list isn't empty and loop it */
|
||||
ASSERT(Pfn1 != (PVOID)LIST_HEAD);
|
||||
|
|
|
@ -87,7 +87,7 @@ MmZeroPageThread(VOID)
|
|||
Pfn1->u1.Flink = LIST_HEAD;
|
||||
KeReleaseQueuedSpinLock(LockQueuePfnLock, OldIrql);
|
||||
|
||||
ZeroAddress = MiMapPagesToZeroInHyperSpace(Pfn1, 1);
|
||||
ZeroAddress = MiMapPagesInZeroSpace(Pfn1, 1);
|
||||
ASSERT(ZeroAddress);
|
||||
RtlZeroMemory(ZeroAddress, PAGE_SIZE);
|
||||
MiUnmapPagesInZeroSpace(ZeroAddress, 1);
|
||||
|
|
Loading…
Reference in a new issue