1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

Kernel: Move end_of_kernel_image after the .ksyms section

Without this we won't be able to detect whether .ksyms overlaps the end
of the page table we set up for the kernel image.
This commit is contained in:
Gunnar Beutner 2021-07-16 09:50:34 +02:00 committed by Andreas Kling
parent acf8f2a2a3
commit cbdb488578
5 changed files with 38 additions and 5 deletions

View file

@ -126,7 +126,8 @@ public:
void set_page_writable_direct(VirtualAddress, bool);
void protect_readonly_after_init_memory();
void unmap_memory_after_init();
void unmap_text_after_init();
void unmap_ksyms_after_init();
static void enter_process_paging_scope(Process&);
static void enter_space(Space&);