Changeset c9f0975 in mainline for kernel/generic/include/mm/page.h
- Timestamp:
- 2011-06-01T10:04:32Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 65c3794
- Parents:
- 049a16f (diff), df29f24 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/page.h
r049a16f rc9f0975 39 39 #include <proc/task.h> 40 40 #include <mm/as.h> 41 #include <memstr.h> 41 #include <arch/mm/page.h> 42 43 #define P2SZ(pages) \ 44 ((pages) << PAGE_WIDTH) 42 45 43 46 /** Operations to manipulate page mappings. */ … … 45 48 void (* mapping_insert)(as_t *, uintptr_t, uintptr_t, unsigned int); 46 49 void (* mapping_remove)(as_t *, uintptr_t); 47 pte_t *(* mapping_find)(as_t *, uintptr_t );50 pte_t *(* mapping_find)(as_t *, uintptr_t, bool); 48 51 } page_mapping_operations_t; 49 52 … … 56 59 extern void page_mapping_insert(as_t *, uintptr_t, uintptr_t, unsigned int); 57 60 extern void page_mapping_remove(as_t *, uintptr_t); 58 extern pte_t *page_mapping_find(as_t *, uintptr_t );61 extern pte_t *page_mapping_find(as_t *, uintptr_t, bool); 59 62 extern pte_t *page_table_create(unsigned int); 60 63 extern void page_table_destroy(pte_t *);
Note:
See TracChangeset
for help on using the changeset viewer.