mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOS:MM] Use MI_ZERO_PTES as the number of usable zeroing PTEs, not the total allocated. CORE-11856
We'll now have 32 usable zeroing PTEs instead of 31. MP kernels will (some day) zero up to 32 pages at a time.
This commit is contained in:
parent
61c8d3432c
commit
754e175d12
3 changed files with 10 additions and 9 deletions
|
@ -122,7 +122,7 @@ MiMapPagesInZeroSpace(IN PMMPFN Pfn1,
|
|||
//
|
||||
ASSERT(KeGetCurrentIrql() == PASSIVE_LEVEL);
|
||||
ASSERT(NumberOfPages != 0);
|
||||
ASSERT(NumberOfPages <= (MI_ZERO_PTES - 1));
|
||||
ASSERT(NumberOfPages <= MI_ZERO_PTES);
|
||||
|
||||
//
|
||||
// Pick the first zeroing PTE
|
||||
|
@ -138,7 +138,7 @@ MiMapPagesInZeroSpace(IN PMMPFN Pfn1,
|
|||
//
|
||||
// Reset the PTEs
|
||||
//
|
||||
Offset = MI_ZERO_PTES - 1;
|
||||
Offset = MI_ZERO_PTES;
|
||||
PointerPte->u.Hard.PageFrameNumber = Offset;
|
||||
KeFlushProcessTb();
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ MiUnmapPagesInZeroSpace(IN PVOID VirtualAddress,
|
|||
//
|
||||
ASSERT(KeGetCurrentIrql() == PASSIVE_LEVEL);
|
||||
ASSERT (NumberOfPages != 0);
|
||||
ASSERT (NumberOfPages <= (MI_ZERO_PTES - 1));
|
||||
ASSERT(NumberOfPages <= MI_ZERO_PTES);
|
||||
|
||||
//
|
||||
// Get the first PTE for the mapped zero VA
|
||||
|
|
|
@ -522,14 +522,14 @@ MiInitMachineDependent(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
|
|||
//
|
||||
// Reserve system PTEs for zeroing PTEs and clear them
|
||||
//
|
||||
MiFirstReservedZeroingPte = MiReserveSystemPtes(MI_ZERO_PTES,
|
||||
MiFirstReservedZeroingPte = MiReserveSystemPtes(MI_ZERO_PTES + 1,
|
||||
SystemPteSpace);
|
||||
RtlZeroMemory(MiFirstReservedZeroingPte, MI_ZERO_PTES * sizeof(MMPTE));
|
||||
RtlZeroMemory(MiFirstReservedZeroingPte, (MI_ZERO_PTES + 1) * sizeof(MMPTE));
|
||||
|
||||
//
|
||||
// Set the counter to maximum to boot with
|
||||
//
|
||||
MiFirstReservedZeroingPte->u.Hard.PageFrameNumber = MI_ZERO_PTES - 1;
|
||||
MiFirstReservedZeroingPte->u.Hard.PageFrameNumber = MI_ZERO_PTES;
|
||||
|
||||
/* Lock PFN database */
|
||||
OldIrql = MiAcquirePfnLock();
|
||||
|
|
|
@ -382,11 +382,12 @@ MiBuildSystemPteSpace(VOID)
|
|||
MiInitializeSystemPtes(PointerPte, MmNumberOfSystemPtes, SystemPteSpace);
|
||||
|
||||
/* Reserve system PTEs for zeroing PTEs and clear them */
|
||||
MiFirstReservedZeroingPte = MiReserveSystemPtes(MI_ZERO_PTES, SystemPteSpace);
|
||||
RtlZeroMemory(MiFirstReservedZeroingPte, MI_ZERO_PTES * sizeof(MMPTE));
|
||||
MiFirstReservedZeroingPte = MiReserveSystemPtes(MI_ZERO_PTES + 1,
|
||||
SystemPteSpace);
|
||||
RtlZeroMemory(MiFirstReservedZeroingPte, (MI_ZERO_PTES + 1) * sizeof(MMPTE));
|
||||
|
||||
/* Set the counter to maximum */
|
||||
MiFirstReservedZeroingPte->u.Hard.PageFrameNumber = MI_ZERO_PTES - 1;
|
||||
MiFirstReservedZeroingPte->u.Hard.PageFrameNumber = MI_ZERO_PTES;
|
||||
}
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue