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:
parent
418c6eb13b
commit
92556e07d3
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue