Changeset 6843a9c in mainline for kernel/generic/include/mm/page.h


Ignore:
Timestamp:
2012-06-29T13:02:14Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
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.
Message:

Merge mainline changes

Trivial conflicts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/page.h

    rba72f2b r6843a9c  
    4949        void (* mapping_remove)(as_t *, uintptr_t);
    5050        pte_t *(* mapping_find)(as_t *, uintptr_t, bool);
     51        void (* mapping_make_global)(uintptr_t, size_t);
    5152} page_mapping_operations_t;
    5253
     
    6061extern void page_mapping_remove(as_t *, uintptr_t);
    6162extern pte_t *page_mapping_find(as_t *, uintptr_t, bool);
     63extern void page_mapping_make_global(uintptr_t, size_t);
    6264extern pte_t *page_table_create(unsigned int);
    6365extern void page_table_destroy(pte_t *);
    64 extern void map_structure(uintptr_t, size_t);
    6566
    66 extern uintptr_t hw_map(uintptr_t, size_t);
    67 
    68 extern sysarg_t sys_page_find_mapping(uintptr_t, uintptr_t *);
     67extern int page_find_mapping(uintptr_t, void **);
     68extern sysarg_t sys_page_find_mapping(uintptr_t, void *);
    6969
    7070#endif
Note: See TracChangeset for help on using the changeset viewer.