Lines Matching refs:old_tbl
228 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
229 struct bucket_table *new_tbl = rhashtable_last_table(ht, old_tbl);
241 rht_for_each_from(entry, rht_ptr(bkt, old_tbl, old_hash),
242 old_tbl, old_hash) {
244 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
279 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
280 struct rhash_lock_head __rcu **bkt = rht_bucket_var(old_tbl, old_hash);
286 flags = rht_lock(old_tbl, bkt);
293 rht_unlock(old_tbl, bkt, flags);
299 struct bucket_table *old_tbl,
308 if (cmpxchg((struct bucket_table **)&old_tbl->future_tbl, NULL,
317 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
323 new_tbl = rht_dereference(old_tbl->future_tbl, ht);
327 for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
338 list_for_each_entry(walker, &old_tbl->walkers, list)
348 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
355 struct bucket_table *old_tbl,
367 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl);
392 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
401 if (old_tbl->size <= size)
404 if (rht_dereference(old_tbl->future_tbl, ht))
407 return rhashtable_rehash_alloc(ht, old_tbl, size);
445 struct bucket_table *old_tbl;
450 old_tbl = rht_dereference_rcu(ht->tbl, ht);
459 else if (old_tbl != tbl)