From 7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 10 Sep 2025 13:28:28 -0400 Subject: refactor paging code. regression on loading init program --- include/arch/x86_64/page-mapping.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'include/arch/x86_64/page-mapping.h') diff --git a/include/arch/x86_64/page-mapping.h b/include/arch/x86_64/page-mapping.h index fd620ea..8389132 100644 --- a/include/arch/x86_64/page-mapping.h +++ b/include/arch/x86_64/page-mapping.h @@ -3,13 +3,19 @@ #include "arch/x86_64/page.h" -pmle_t *page_mapping_traverse(pmle_t *pml4, uint8_t depth, uint16_t *path); +pmle_t *pml4_traverse(pmle_t *pml4, uint8_t depth, uint16_t *path); /**@FUNC Get the pmle associated with this virtual address down to a given depth. * At depth=0, gets &pml4[pml4i] * At depth=1, gets &pml4[pml4i][pml3i] * At depth=2, gets &pml4[pml4i][pml3i][pml2i] - * etc...*/ -pmle_t *mem_mapping_vptr_mapping(pmle_t *pml4, uint8_t depth, uintptr_t vptr); + * etc... + * @PARAM pml4 table to get mapping from. + * @PARAM depth how deep to traverse for the mapping. + * @PARAM vptr address to get mapping for. + * @RETURN pointer to pmle (if exists)*/ +pmle_t *pml4_get_mapping(pmle_t *pml4, uint8_t depth, uintptr_t vptr); + +int pml4_try_map(pmle_t *pml4, uintptr_t pptr, uintptr_t vptr); #endif -- cgit v1.2.1