Changeset 00aece0 in mainline for kernel/generic/include/mm/page.h


Ignore:
Timestamp:
2012-02-18T16:47:38Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4449c6c
Parents:
bd5f3b7 (diff), f943dd3 (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.

File:
1 edited

Legend:

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

    rbd5f3b7 r00aece0  
    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.