Searched refs:hash_list (Results 1 – 3 of 3) sorted by relevance
/fs/jbd2/ |
D | revoke.c | 139 struct list_head *hash_list; in insert_revoke_hash() local 151 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)]; in insert_revoke_hash() 153 list_add(&record->hash, hash_list); in insert_revoke_hash() 163 struct list_head *hash_list; in find_revoke_record() local 166 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)]; in find_revoke_record() 169 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record() 170 while (&(record->hash) != hash_list) { in find_revoke_record() 251 struct list_head *hash_list; in jbd2_journal_destroy_revoke_table() local 254 hash_list = &table->hash_table[i]; in jbd2_journal_destroy_revoke_table() 255 J_ASSERT(list_empty(hash_list)); in jbd2_journal_destroy_revoke_table() [all …]
|
/fs/ |
D | dcookies.c | 38 struct list_head hash_list; member 76 dcs = list_entry(pos, struct dcookie_struct, hash_list); in find_dcookie() 90 list_add(&dcs->hash_list, list); in hash_dcookie() 301 dcs = list_entry(pos, struct dcookie_struct, hash_list); in dcookie_exit() 302 list_del(&dcs->hash_list); in dcookie_exit()
|
/fs/btrfs/ |
D | raid56.c | 42 struct list_head hash_list; member 70 struct list_head hash_list; member 231 INIT_LIST_HEAD(&cur->hash_list); in btrfs_alloc_stripe_hash_table() 388 if (!list_empty(&rbio->hash_list)) { in __remove_rbio_from_cache() 389 list_del_init(&rbio->hash_list); in __remove_rbio_from_cache() 686 list_for_each_entry(cur, &h->hash_list, hash_list) { in lock_stripe_add() 697 list_del_init(&cur->hash_list); in lock_stripe_add() 743 list_add(&rbio->hash_list, &h->hash_list); in lock_stripe_add() 773 if (!list_empty(&rbio->hash_list)) { in unlock_stripe() 787 list_del_init(&rbio->hash_list); in unlock_stripe() [all …]
|