mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:47:46 +00:00
Kernel: Move Aarch64 MMU debug message into memory manager initializer
Doing so unifies startup debug messages visually.
This commit is contained in:
parent
e1c50b83e1
commit
95c469ca4c
2 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,6 @@ extern "C" [[noreturn]] void init()
|
||||||
|
|
||||||
dmesgln("Starting SerenityOS...");
|
dmesgln("Starting SerenityOS...");
|
||||||
|
|
||||||
dmesgln("Initialize MMU");
|
|
||||||
Memory::MemoryManager::initialize(0);
|
Memory::MemoryManager::initialize(0);
|
||||||
DeviceManagement::initialize();
|
DeviceManagement::initialize();
|
||||||
SysFSComponentRegistry::initialize();
|
SysFSComponentRegistry::initialize();
|
||||||
|
|
|
@ -651,6 +651,7 @@ void MemoryManager::release_pte(PageDirectory& page_directory, VirtualAddress va
|
||||||
|
|
||||||
UNMAP_AFTER_INIT void MemoryManager::initialize(u32 cpu)
|
UNMAP_AFTER_INIT void MemoryManager::initialize(u32 cpu)
|
||||||
{
|
{
|
||||||
|
dmesgln("Initialize MMU");
|
||||||
ProcessorSpecific<MemoryManagerData>::initialize();
|
ProcessorSpecific<MemoryManagerData>::initialize();
|
||||||
|
|
||||||
if (cpu == 0) {
|
if (cpu == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue