Searched refs:new_tbl (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/lib/ |
D | rhashtable.c | 148 struct bucket_table *new_tbl; in rhashtable_last_table() local 151 new_tbl = tbl; in rhashtable_last_table() 155 return new_tbl; in rhashtable_last_table() 161 struct bucket_table *new_tbl = rhashtable_last_table(ht, in rhashtable_rehash_one() local 182 new_hash = head_hashfn(ht, new_tbl, entry); in rhashtable_rehash_one() 184 new_bucket_lock = rht_bucket_lock(new_tbl, new_hash); in rhashtable_rehash_one() 187 head = rht_dereference_bucket(new_tbl->buckets[new_hash], in rhashtable_rehash_one() 188 new_tbl, new_hash); in rhashtable_rehash_one() 195 rcu_assign_pointer(new_tbl->buckets[new_hash], entry); in rhashtable_rehash_one() 221 struct bucket_table *new_tbl) in rhashtable_rehash_attach() argument [all …]
|
/linux-4.1.27/include/linux/ |
D | rhashtable.h | 572 struct bucket_table *tbl, *new_tbl; in __rhashtable_insert_fast() local 599 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht); in __rhashtable_insert_fast() 600 if (unlikely(new_tbl)) { in __rhashtable_insert_fast() 601 err = rhashtable_insert_slow(ht, key, obj, new_tbl); in __rhashtable_insert_fast()
|