From a0bb2191d900631acd33276a028397b0a9b3fb5d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 23 May 2024 19:36:54 -0400 Subject: kernel/amd64: pmap: Add pmap_init() Signed-off-by: Ian Moffett --- sys/include/vm/pmap.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/include') diff --git a/sys/include/vm/pmap.h b/sys/include/vm/pmap.h index 3380199..faad0fb 100644 --- a/sys/include/vm/pmap.h +++ b/sys/include/vm/pmap.h @@ -99,4 +99,9 @@ int pmap_free_vas(struct vm_ctx *, struct vas); * Unmap a page. */ int pmap_unmap(struct vm_ctx *, struct vas, vaddr_t); + +/* + * Architecture specific init code for pmap + */ +int pmap_init(struct vm_ctx *); #endif /* _VM_PMAP_H_ */ -- cgit v1.2.3