mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 17:37:00 +02:00
Kernel: Move Aarch64 MMU debug message into memory manager initializer
Doing so unifies startup debug messages visually.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
e1c50b83e1
commit
95c469ca4c
@@ -171,7 +171,6 @@ extern "C" [[noreturn]] void init()
|
||||
|
||||
dmesgln("Starting SerenityOS...");
|
||||
|
||||
dmesgln("Initialize MMU");
|
||||
Memory::MemoryManager::initialize(0);
|
||||
DeviceManagement::initialize();
|
||||
SysFSComponentRegistry::initialize();
|
||||
|
||||
@@ -651,6 +651,7 @@ void MemoryManager::release_pte(PageDirectory& page_directory, VirtualAddress va
|
||||
|
||||
UNMAP_AFTER_INIT void MemoryManager::initialize(u32 cpu)
|
||||
{
|
||||
dmesgln("Initialize MMU");
|
||||
ProcessorSpecific<MemoryManagerData>::initialize();
|
||||
|
||||
if (cpu == 0) {
|
||||
|
||||
Reference in New Issue
Block a user