mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
- Initialize hyperspace before page lists. Fixes boot problem (spotted by Alex).
svn path=/trunk/; revision=39936
This commit is contained in:
parent
df00880ca7
commit
084068b86a
1 changed files with 7 additions and 7 deletions
|
@ -434,15 +434,15 @@ MmInit1(VOID)
|
||||||
/* Dump kernel memory layout */
|
/* Dump kernel memory layout */
|
||||||
MiDbgKernelLayout();
|
MiDbgKernelLayout();
|
||||||
|
|
||||||
|
/* Initialize hyperspace */
|
||||||
|
MiInitHyperSpace();
|
||||||
|
|
||||||
/* Initialize the page list */
|
/* Initialize the page list */
|
||||||
MmInitializePageList();
|
MmInitializePageList();
|
||||||
|
|
||||||
/* Unmap low memory */
|
/* Unmap low memory */
|
||||||
MmDeletePageTable(NULL, 0);
|
MmDeletePageTable(NULL, 0);
|
||||||
|
|
||||||
/* Initialize hyperspace */
|
|
||||||
MiInitHyperSpace();
|
|
||||||
|
|
||||||
/* Intialize memory areas */
|
/* Intialize memory areas */
|
||||||
MmInitVirtualMemory();
|
MmInitVirtualMemory();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue