Kernel: Update outdated "user physical pages" terminology

These are now just "physical pages".
This commit is contained in:
Andreas Kling 2022-08-14 21:30:57 +02:00
commit 92556e07d3
Notes: sideshowbarker 2024-07-17 08:14:37 +09:00

View file

@ -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;
}