Changeset 6843a9c in mainline for kernel/generic/include/mm/page.h
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (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
rba72f2b r6843a9c 49 49 void (* mapping_remove)(as_t *, uintptr_t); 50 50 pte_t *(* mapping_find)(as_t *, uintptr_t, bool); 51 void (* mapping_make_global)(uintptr_t, size_t); 51 52 } page_mapping_operations_t; 52 53 … … 60 61 extern void page_mapping_remove(as_t *, uintptr_t); 61 62 extern pte_t *page_mapping_find(as_t *, uintptr_t, bool); 63 extern void page_mapping_make_global(uintptr_t, size_t); 62 64 extern pte_t *page_table_create(unsigned int); 63 65 extern void page_table_destroy(pte_t *); 64 extern void map_structure(uintptr_t, size_t);65 66 66 extern uintptr_t hw_map(uintptr_t, size_t); 67 68 extern sysarg_t sys_page_find_mapping(uintptr_t, uintptr_t *); 67 extern int page_find_mapping(uintptr_t, void **); 68 extern sysarg_t sys_page_find_mapping(uintptr_t, void *); 69 69 70 70 #endif
Note:
See TracChangeset
for help on using the changeset viewer.