mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 09:37:45 +00:00
Kernel: Remove trace log in MemoryManager::deallocate_user_physical_page()
This commit is contained in:
parent
06b73eea94
commit
5cd1217b6e
1 changed files with 1 additions and 3 deletions
|
@ -483,10 +483,8 @@ void MemoryManager::deallocate_user_physical_page(const PhysicalPage& page)
|
||||||
{
|
{
|
||||||
ScopedSpinLock lock(s_mm_lock);
|
ScopedSpinLock lock(s_mm_lock);
|
||||||
for (auto& region : m_user_physical_regions) {
|
for (auto& region : m_user_physical_regions) {
|
||||||
if (!region.contains(page)) {
|
if (!region.contains(page))
|
||||||
klog() << "MM: deallocate_user_physical_page: " << page.paddr() << " not in " << region.lower() << " -> " << region.upper();
|
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
region.return_page(page);
|
region.return_page(page);
|
||||||
--m_user_physical_pages_used;
|
--m_user_physical_pages_used;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue