diff --git a/kernel/arch/x86_64/MMU.cpp b/kernel/arch/x86_64/MMU.cpp index 97cfcc88..a5f4f34f 100644 --- a/kernel/arch/x86_64/MMU.cpp +++ b/kernel/arch/x86_64/MMU.cpp @@ -138,10 +138,6 @@ namespace Kernel void MMU::load() { - uintptr_t rsp; - read_rsp(rsp); - ASSERT(!is_page_free(rsp & PAGE_ADDR_MASK)); - asm volatile("movq %0, %%cr3" :: "r"(m_highest_paging_struct)); s_current = this; }