diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-15 00:31:48 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-15 00:31:48 -0400 |
commit | 68b55b3596178fde4b5ee98f037cb40ef7602f79 (patch) | |
tree | 064f4562133449a84fd8e661fd34dece34792b52 /src/sys/arch/amd64/cpu/mmu.c | |
parent | d19790a958e6842db74eef123ad444bf10d2bd9a (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/mmu.c')
-rw-r--r-- | src/sys/arch/amd64/cpu/mmu.c | 2 |
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> |