Disable support for huge pages

This commit is contained in:
Rodrigo Arias 2024-07-10 14:19:49 +02:00
parent 4c2e21033b
commit b7d02f867a
2 changed files with 11 additions and 0 deletions

View File

@ -1170,3 +1170,9 @@ a simple bootrom that outputs some ASCII text into the console.
Regarding the `do_page_fault` filter, it seems that is no available. I need to Regarding the `do_page_fault` filter, it seems that is no available. I need to
pick one from `available_filter_functions` instead. Let's try `handle_page_fault`. pick one from `available_filter_functions` instead. Let's try `handle_page_fault`.
It still doesn't seem to appear in the console. It is visible with a SysRq
request Ctrl+O then 'z'.
Maybe I can try disabling the huge pages, just to discard that it may be
related to it: `CONFIG_HUGETLBFS`.

View File

@ -71,6 +71,11 @@
+ '' + ''
SMP n SMP n
'' ''
# Disable huge pages
+ ''
HUGETLBFS n
HUGETLB_PAGE n
''
; ;
} }
]; ];