mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
VM: Remove PhysicalPage::create_eternal().
Now that it is possible to create non-eternal non-freeable pages, PageDirectory can do just that.
This commit is contained in:
parent
010314ee66
commit
d900fe98e2
Notes:
sideshowbarker
2024-07-19 13:36:32 +09:00
Author: https://github.com/bugaevc
Commit: d900fe98e2
Pull-request: https://github.com/SerenityOS/serenity/pull/229
3 changed files with 1 additions and 9 deletions
|
@ -9,7 +9,7 @@ static const dword kernelspace_range_base = 0xc0000000;
|
|||
PageDirectory::PageDirectory(PhysicalAddress paddr)
|
||||
: m_range_allocator(VirtualAddress(0xc0000000), 0x3f000000)
|
||||
{
|
||||
m_directory_page = PhysicalPage::create_eternal(paddr, true);
|
||||
m_directory_page = PhysicalPage::create(paddr, true, false);
|
||||
}
|
||||
|
||||
PageDirectory::PageDirectory(const RangeAllocator* parent_range_allocator)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue