Lines Matching refs:new_tbl
205 struct bucket_table *new_tbl; in rhashtable_last_table() local
208 new_tbl = tbl; in rhashtable_last_table()
212 return new_tbl; in rhashtable_last_table()
220 struct bucket_table *new_tbl = rhashtable_last_table(ht, old_tbl); in rhashtable_rehash_one() local
226 if (new_tbl->nest) in rhashtable_rehash_one()
245 new_hash = head_hashfn(ht, new_tbl, entry); in rhashtable_rehash_one()
247 rht_lock_nested(new_tbl, &new_tbl->buckets[new_hash], SINGLE_DEPTH_NESTING); in rhashtable_rehash_one()
249 head = rht_ptr(new_tbl->buckets + new_hash, new_tbl, new_hash); in rhashtable_rehash_one()
253 rht_assign_unlock(new_tbl, &new_tbl->buckets[new_hash], entry); in rhashtable_rehash_one()
288 struct bucket_table *new_tbl) in rhashtable_rehash_attach() argument
297 new_tbl) != NULL) in rhashtable_rehash_attach()
306 struct bucket_table *new_tbl; in rhashtable_rehash_table() local
311 new_tbl = rht_dereference(old_tbl->future_tbl, ht); in rhashtable_rehash_table()
312 if (!new_tbl) in rhashtable_rehash_table()
323 rcu_assign_pointer(ht->tbl, new_tbl); in rhashtable_rehash_table()
339 return rht_dereference(new_tbl->future_tbl, ht) ? -EAGAIN : 0; in rhashtable_rehash_table()
346 struct bucket_table *new_tbl; in rhashtable_rehash_alloc() local
351 new_tbl = bucket_table_alloc(ht, size, GFP_KERNEL); in rhashtable_rehash_alloc()
352 if (new_tbl == NULL) in rhashtable_rehash_alloc()
355 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl); in rhashtable_rehash_alloc()
357 bucket_table_free(new_tbl); in rhashtable_rehash_alloc()
434 struct bucket_table *new_tbl; in rhashtable_insert_rehash() local
452 new_tbl = bucket_table_alloc(ht, size, GFP_ATOMIC | __GFP_NOWARN); in rhashtable_insert_rehash()
453 if (new_tbl == NULL) in rhashtable_insert_rehash()
456 err = rhashtable_rehash_attach(ht, tbl, new_tbl); in rhashtable_insert_rehash()
458 bucket_table_free(new_tbl); in rhashtable_insert_rehash()
536 struct bucket_table *new_tbl; in rhashtable_insert_one() local
545 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht); in rhashtable_insert_one()
546 if (new_tbl) in rhashtable_insert_one()
547 return new_tbl; in rhashtable_insert_one()
583 struct bucket_table *new_tbl; in rhashtable_try_insert() local
589 new_tbl = rcu_dereference(ht->tbl); in rhashtable_try_insert()
592 tbl = new_tbl; in rhashtable_try_insert()
600 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht); in rhashtable_try_insert()
606 new_tbl = rhashtable_insert_one(ht, bkt, tbl, in rhashtable_try_insert()
608 if (PTR_ERR(new_tbl) != -EEXIST) in rhashtable_try_insert()
609 data = ERR_CAST(new_tbl); in rhashtable_try_insert()
613 } while (!IS_ERR_OR_NULL(new_tbl)); in rhashtable_try_insert()