mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:07:34 +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;
|
return IterationDecision::Continue;
|
||||||
});
|
});
|
||||||
if (!page) {
|
if (!page) {
|
||||||
dmesgln("MM: no user physical pages available");
|
dmesgln("MM: no physical pages available");
|
||||||
return ENOMEM;
|
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;
|
return ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue