diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-20 00:00:19 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-20 00:00:19 +0100 |
commit | cc0f5917d315ff8adfaa8b8922ac918085680b1c (patch) | |
tree | e68715431aa2a166d0bf4469075b912243c48bef /Kernel/Arch/i386 | |
parent | 4f0be557706eeb1aa7f0584ac6a7f2456a066eea (diff) | |
download | serenity-cc0f5917d315ff8adfaa8b8922ac918085680b1c.zip |
Kernel: Slap a handful more things with UNMAP_AFTER_INIT
Diffstat (limited to 'Kernel/Arch/i386')
-rw-r--r-- | Kernel/Arch/i386/CPU.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Arch/i386/CPU.cpp b/Kernel/Arch/i386/CPU.cpp index cc76bf31b7..dca97aef2a 100644 --- a/Kernel/Arch/i386/CPU.cpp +++ b/Kernel/Arch/i386/CPU.cpp @@ -2049,7 +2049,7 @@ void Processor::Processor::halt() halt_this(); } -void Processor::deferred_call_pool_init() +UNMAP_AFTER_INIT void Processor::deferred_call_pool_init() { size_t pool_count = sizeof(m_deferred_call_pool) / sizeof(m_deferred_call_pool[0]); for (size_t i = 0; i < pool_count; i++) { |