Changeset 2a2fbc8 in mainline for kernel/generic/include/mm/page.h
- Timestamp:
- 2016-09-01T17:05:13Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 42d08592
- Parents:
- f126c87 (diff), fb63c06 (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
rf126c87 r2a2fbc8 48 48 void (* mapping_insert)(as_t *, uintptr_t, uintptr_t, unsigned int); 49 49 void (* mapping_remove)(as_t *, uintptr_t); 50 pte_t *(* mapping_find)(as_t *, uintptr_t, bool); 50 bool (* mapping_find)(as_t *, uintptr_t, bool, pte_t *); 51 void (* mapping_update)(as_t *, uintptr_t, bool, pte_t *); 51 52 void (* mapping_make_global)(uintptr_t, size_t); 52 53 } page_mapping_operations_t; … … 60 61 extern void page_mapping_insert(as_t *, uintptr_t, uintptr_t, unsigned int); 61 62 extern void page_mapping_remove(as_t *, uintptr_t); 62 extern pte_t *page_mapping_find(as_t *, uintptr_t, bool); 63 extern bool page_mapping_find(as_t *, uintptr_t, bool, pte_t *); 64 extern void page_mapping_update(as_t *, uintptr_t, bool, pte_t *); 63 65 extern void page_mapping_make_global(uintptr_t, size_t); 64 66 extern pte_t *page_table_create(unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.