Changeset f5935ed in mainline for genarch/src/mm/page_ht.c
- Timestamp:
- 2006-02-06T15:09:58Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 021d471
- Parents:
- c7ec94a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/src/mm/page_ht.c
rc7ec94a4 rf5935ed 68 68 }; 69 69 70 page_operations_t page_ht_operations = { 70 /** Page mapping operations for page hash table architectures. */ 71 page_mapping_operations_t ht_mapping_operations = { 71 72 .mapping_insert = ht_mapping_insert, 72 73 .mapping_find = ht_mapping_find … … 120 121 * Convert item to PTE. 121 122 */ 122 t = list_get_instance(item, pte_t, link);123 t = hash_table_get_instance(item, pte_t, link); 123 124 124 125 if (keys == PAGE_HT_KEYS) { … … 142 143 * Convert item to PTE. 143 144 */ 144 t = list_get_instance(item, pte_t, link);145 t = hash_table_get_instance(item, pte_t, link); 145 146 146 147 free(t); … … 200 201 hlp = hash_table_find(&page_ht, key); 201 202 if (hlp) 202 t = list_get_instance(hlp, pte_t, link);203 t = hash_table_get_instance(hlp, pte_t, link); 203 204 204 205 spinlock_unlock(&page_ht_lock);
Note:
See TracChangeset
for help on using the changeset viewer.