x86_64/MMU: Copy from the mapped kernel directory instead of the physical version
All checks were successful
continuous-integration/drone/pr Build is passing
All checks were successful
continuous-integration/drone/pr Build is passing
This commit is contained in:
parent
995d1bc36e
commit
837d483e0b
@ -288,7 +288,8 @@ namespace MMU
|
|||||||
|
|
||||||
constexpr auto HALF_PAGE = ARCH_PAGE_SIZE / 2;
|
constexpr auto HALF_PAGE = ARCH_PAGE_SIZE / 2;
|
||||||
// Copy the upper part of the page directory (higher half)
|
// Copy the upper part of the page directory (higher half)
|
||||||
memcpy(offset_ptr(directory, HALF_PAGE), offset_ptr(g_kernel_directory, HALF_PAGE), HALF_PAGE);
|
memcpy(offset_ptr(directory, HALF_PAGE), offset_ptr((PageDirectory*)g_kernel_directory_virt, HALF_PAGE),
|
||||||
|
HALF_PAGE);
|
||||||
|
|
||||||
kdbgln("MMU init page directory (ring3): virt %p, phys %#.16lx", directory, directory_phys);
|
kdbgln("MMU init page directory (ring3): virt %p, phys %#.16lx", directory, directory_phys);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user