diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-23 19:36:54 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-23 19:48:18 -0400 |
commit | a0bb2191d900631acd33276a028397b0a9b3fb5d (patch) | |
tree | 38deb87917c56d7e516f9c5b5dc68438b7ad6e5c /sys/vm/vm_init.c | |
parent | 5f27480f26cb3c3329fdf4f1d7047ee11c6d1a95 (diff) |
kernel/amd64: pmap: Add pmap_init()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm/vm_init.c')
-rw-r--r-- | sys/vm/vm_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 6096059..3087e6e 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -29,6 +29,7 @@ #include <vm/vm.h> #include <vm/physseg.h> +#include <vm/pmap.h> #include <sys/panic.h> #include <assert.h> @@ -74,6 +75,9 @@ vm_init(void) void *pool_va; kernel_vas = pmap_read_vas(); + if (pmap_init(vm_get_ctx()) != 0) { + panic("Failed to init pmap layer\n"); + } /* Setup virtual memory context */ bsp_vm_ctx.dynalloc_pool_sz = DYNALLOC_POOL_SZ; |