Changeset 61eb2ce2 in mainline for kernel/genarch/include
- Timestamp:
- 2023-02-05T22:03:19Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b596d0d
- Parents:
- 07700ed
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:01:46)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-05 22:03:19)
- Location:
- kernel/genarch/include/genarch/mm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/genarch/mm/page_ht.h
r07700ed r61eb2ce2 57 57 #define PTE_EXECUTABLE(pte) ((pte)->x != 0) 58 58 59 extern as_operations_t as_ht_operations;60 extern page_mapping_operations_t ht_mapping_operations;59 extern const as_operations_t as_ht_operations; 60 extern const page_mapping_operations_t ht_mapping_operations; 61 61 62 62 extern slab_cache_t *pte_cache; 63 63 extern hash_table_t page_ht; 64 extern hash_table_ops_t ht_ops;64 extern const hash_table_ops_t ht_ops; 65 65 66 66 #endif -
kernel/genarch/include/genarch/mm/page_pt.h
r07700ed r61eb2ce2 140 140 #define PTE_EXECUTABLE(p) PTE_EXECUTABLE_ARCH((p)) 141 141 142 extern as_operations_t as_pt_operations;143 extern page_mapping_operations_t pt_mapping_operations;142 extern const as_operations_t as_pt_operations; 143 extern const page_mapping_operations_t pt_mapping_operations; 144 144 145 145 extern void page_mapping_insert_pt(as_t *, uintptr_t, uintptr_t, unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.