From 92556e07d3a41b9dd31e557f9d9f710f4db963f4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 14 Aug 2022 21:30:57 +0200 Subject: [PATCH] Kernel: Update outdated "user physical pages" terminology These are now just "physical pages". --- Kernel/Memory/MemoryManager.cpp | 4 ++-- 1 file 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> 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> MemoryManager::allocate_contiguous_ph } } - dmesgln("MM: no contiguous user physical pages available"); + dmesgln("MM: no contiguous physical pages available"); return ENOMEM; }