diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-30 22:10:37 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-30 22:10:37 -0400 |
commit | ccdd5b6d2f196cb6a2add34f71eebccbedb35c55 (patch) | |
tree | 2211f94c9d9840f994da9148590cfeacf03ad6ca /sys/include/vm | |
parent | 9d0ac7b5da9f94224cbc9fcb2f60a84b15fc68fa (diff) |
kernel/amd64: pmap: Add pmap_destroy_vas()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm')
-rw-r--r-- | sys/include/vm/pmap.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/include/vm/pmap.h b/sys/include/vm/pmap.h index dccfe0d..4cd334c 100644 --- a/sys/include/vm/pmap.h +++ b/sys/include/vm/pmap.h @@ -57,6 +57,11 @@ void pmap_switch_vas(struct vas vas); int pmap_new_vas(struct vas *res); /* + * Deallocate a virtual address space. + */ +void pmap_destroy_vas(struct vas vas); + +/* * Create a virtual memory mapping of a single page. */ int pmap_map(struct vas vas, vaddr_t va, paddr_t pa, vm_prot_t prot); |