diff options
author | Ian Moffett <ian@osmora.org> | 2024-01-17 21:01:02 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-01-17 21:01:02 -0500 |
commit | 6ed63f6cee404c09ce6d2becf4ab60b891a767fe (patch) | |
tree | 91fec5e1334675afa33b6f3034c7c61e1ffb6860 /sys/arch/amd64 | |
parent | 469f601e210a74bb08408be894c9ec84701d6715 (diff) |
kernel: vm: Init virtual memory in pre_init()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index f5b6365..1194b63 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -38,6 +38,8 @@ #include <machine/spectre.h> #include <machine/cpu.h> #include <machine/uart.h> +#include <vm/vm.h> +#include <vm/physseg.h> #include <firmware/acpi/acpi.h> __MODULE_NAME("machdep"); @@ -104,6 +106,9 @@ pre_init(void) uart8250_try_init(); interrupts_init(); gdt_load(&g_gdtr); + + vm_physseg_init(); + vm_init(); } void |