mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:08:10 +00:00
Kernel: Make the loop that marks the bottom 1MB NX a little less busy
This commit is contained in:
parent
2a4a19aed8
commit
0f9800ca57
1 changed files with 4 additions and 3 deletions
|
@ -63,10 +63,11 @@ void MemoryManager::initialize_paging()
|
|||
create_identity_mapping(kernel_page_directory(), VirtualAddress(PAGE_SIZE), (8 * MB) - PAGE_SIZE);
|
||||
|
||||
// Disable execution from 0MB through 1MB (BIOS data, legacy things, ...)
|
||||
for (size_t i = 0; i < (1 * MB); ++i) {
|
||||
auto& pte = ensure_pte(kernel_page_directory(), VirtualAddress(i));
|
||||
if (g_cpu_supports_nx)
|
||||
if (g_cpu_supports_nx) {
|
||||
for (size_t i = 0; i < (1 * MB); i += PAGE_SIZE) {
|
||||
auto& pte = ensure_pte(kernel_page_directory(), VirtualAddress(i));
|
||||
pte.set_execute_disabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
// Disable execution from 2MB through 8MB (kmalloc, kmalloc_eternal, slabs, page tables, ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue