diff options
author | Andreas Kling <kling@serenityos.org> | 2022-08-14 21:30:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-14 23:33:28 +0200 |
commit | 92556e07d3a41b9dd31e557f9d9f710f4db963f4 (patch) | |
tree | aea131330350c337a66db8eb9e1677c2b94518c6 | |
parent | 418c6eb13bf78cbb355ea424cd75ff7511476b2f (diff) | |
download | serenity-92556e07d3a41b9dd31e557f9d9f710f4db963f4.zip |
Kernel: Update outdated "user physical pages" terminology
These are now just "physical pages".
-rw-r--r-- | Kernel/Memory/MemoryManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index 30950d59bd..fda5530b02 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -930,7 +930,7 @@ ErrorOr<NonnullRefPtr<PhysicalPage>> MemoryManager::allocate_physical_page(Shoul return IterationDecision::Continue; }); if (!page) { - dmesgln("MM: no user physical pages available"); + dmesgln("MM: no physical pages available"); return ENOMEM; } } @@ -975,7 +975,7 @@ ErrorOr<NonnullRefPtrVector<PhysicalPage>> MemoryManager::allocate_contiguous_ph } } - dmesgln("MM: no contiguous user physical pages available"); + dmesgln("MM: no contiguous physical pages available"); return ENOMEM; } |