Changes in kernel/generic/include/mm/page.h [235e6c7:b93d637] in mainline
- File:
-
- 1 edited
-
kernel/generic/include/mm/page.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/page.h
r235e6c7 rb93d637 37 37 38 38 #include <typedefs.h> 39 #include <proc/task.h> 39 40 #include <mm/as.h> 40 #include <arch/mm/page.h> 41 42 #define P2SZ(pages) \ 43 ((pages) << PAGE_WIDTH) 41 #include <memstr.h> 44 42 45 43 /** Operations to manipulate page mappings. */ … … 47 45 void (* mapping_insert)(as_t *, uintptr_t, uintptr_t, unsigned int); 48 46 void (* mapping_remove)(as_t *, uintptr_t); 49 pte_t *(* mapping_find)(as_t *, uintptr_t , bool);47 pte_t *(* mapping_find)(as_t *, uintptr_t); 50 48 } page_mapping_operations_t; 51 49 … … 58 56 extern void page_mapping_insert(as_t *, uintptr_t, uintptr_t, unsigned int); 59 57 extern void page_mapping_remove(as_t *, uintptr_t); 60 extern pte_t *page_mapping_find(as_t *, uintptr_t , bool);58 extern pte_t *page_mapping_find(as_t *, uintptr_t); 61 59 extern pte_t *page_table_create(unsigned int); 62 60 extern void page_table_destroy(pte_t *); … … 65 63 extern uintptr_t hw_map(uintptr_t, size_t); 66 64 65 extern sysarg_t sys_page_find_mapping(uintptr_t, uintptr_t *); 66 67 67 #endif 68 68
Note:
See TracChangeset
for help on using the changeset viewer.
