1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +00:00

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
parent 418c6eb13b
commit 92556e07d3

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