1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 19:05:08 +00:00

Kernel: Hand out 64-bit addresses to userspace

This commit is contained in:
Gunnar Beutner 2021-07-18 02:49:47 +02:00 committed by Andreas Kling
parent 5938d882d8
commit f56ee10a13
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ UNMAP_AFTER_INIT void PageDirectory::allocate_kernel_directory()
PageDirectory::PageDirectory(const RangeAllocator* parent_range_allocator)
{
constexpr FlatPtr userspace_range_base = 0x00800000;
constexpr FlatPtr userspace_range_ceiling = USER_RANGE_CEILING;
FlatPtr userspace_range_ceiling = USER_RANGE_CEILING;
ScopedSpinLock lock(s_mm_lock);
if (parent_range_allocator) {