Fix loading large process images.

2MiB large pages were being used for any large page mapping, but the
page manager doesn't correctly handle them everywhere yet. Now only
allow them for offset pointers (eg MMIO space) that will never be
unmapped.
This commit is contained in:
Justin C. Miller
2019-03-09 13:10:10 -08:00
parent 97ac3c09fa
commit 2035fffa1c
6 changed files with 32 additions and 14 deletions

View File

@@ -17,6 +17,7 @@ static const char *areas[] = {
"driver",
"file ",
"task ",
"paging",
nullptr
};