summaryrefslogtreecommitdiff
path: root/src/sys/arch/amd64/cpu
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-15 00:31:48 -0400
committerIan Moffett <ian@osmora.org>2025-09-15 00:31:48 -0400
commit68b55b3596178fde4b5ee98f037cb40ef7602f79 (patch)
tree064f4562133449a84fd8e661fd34dece34792b52 /src/sys/arch/amd64/cpu
parentd19790a958e6842db74eef123ad444bf10d2bd9a (diff)
os/amd64: Make MMU header standard per arch
Lunos's virtual memory system is split into two parts, the machine dependent MMU layer and the machine independent layer. The MMU side exposes a standard bridge header that allows the MI layer to interface with the MD layer. Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/amd64/cpu')
-rw-r--r--src/sys/arch/amd64/cpu/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/arch/amd64/cpu/mmu.c b/src/sys/arch/amd64/cpu/mmu.c
index c08335e..3515bf4 100644
--- a/src/sys/arch/amd64/cpu/mmu.c
+++ b/src/sys/arch/amd64/cpu/mmu.c
@@ -32,7 +32,7 @@
#include <sys/param.h>
#include <sys/cdefs.h>
#include <sys/panic.h>
-#include <machine/mmu.h>
+#include <vm/mmu.h>
#include <vm/vm.h>
#include <vm/physseg.h>
#include <string.h>