mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- Fix a typo in the code (thanks to "zimme" for spotting).
svn path=/trunk/; revision=28868
This commit is contained in:
parent
4cb2b785c3
commit
d2816c6491
1 changed files with 5 additions and 5 deletions
|
@ -457,12 +457,12 @@ MmInitializePageList(ULONG_PTR FirstPhysKernelAddress,
|
||||||
/*
|
/*
|
||||||
* Page two is reserved for the KUSER_SHARED_DATA
|
* Page two is reserved for the KUSER_SHARED_DATA
|
||||||
*/
|
*/
|
||||||
MmPageArray[1].Flags.Type = MM_PHYSICAL_PAGE_BIOS;
|
MmPageArray[2].Flags.Type = MM_PHYSICAL_PAGE_BIOS;
|
||||||
MmPageArray[1].Flags.Consumer = MC_NPPOOL;
|
MmPageArray[2].Flags.Consumer = MC_NPPOOL;
|
||||||
MmPageArray[1].Flags.Zero = 0;
|
MmPageArray[2].Flags.Zero = 0;
|
||||||
MmPageArray[1].ReferenceCount = 0;
|
MmPageArray[2].ReferenceCount = 0;
|
||||||
InsertTailList(&BiosPageListHead,
|
InsertTailList(&BiosPageListHead,
|
||||||
&MmPageArray[1].ListEntry);
|
&MmPageArray[2].ListEntry);
|
||||||
MmStats.NrReservedPages++;
|
MmStats.NrReservedPages++;
|
||||||
}
|
}
|
||||||
/* Protect the Page Directory. This will be changed in r3 */
|
/* Protect the Page Directory. This will be changed in r3 */
|
||||||
|
|
Loading…
Reference in a new issue