Lines Matching refs:bkt
225 struct rhash_lock_head __rcu **bkt,
240 rht_for_each_from(entry, rht_ptr(bkt, old_tbl, old_hash),
268 rht_assign_locked(bkt, next);
278 struct rhash_lock_head __rcu **bkt = rht_bucket_var(old_tbl, old_hash);
281 if (!bkt)
283 rht_lock(old_tbl, bkt);
285 while (!(err = rhashtable_rehash_one(ht, bkt, old_hash)))
290 rht_unlock(old_tbl, bkt);
488 struct rhash_lock_head __rcu **bkt,
501 rht_for_each_from(head, rht_ptr(bkt, tbl, hash), tbl, hash) {
527 rht_assign_locked(bkt, obj);
539 struct rhashtable *ht, struct rhash_lock_head __rcu **bkt,
565 head = rht_ptr(bkt, tbl, hash);
575 /* bkt is always the head of the list, so it holds
578 rht_assign_locked(bkt, obj);
592 struct rhash_lock_head __rcu **bkt;
603 bkt = rht_bucket_var(tbl, hash);
605 bkt = rht_bucket_insert(ht, tbl, hash);
606 if (bkt == NULL) {
610 rht_lock(tbl, bkt);
611 data = rhashtable_lookup_one(ht, bkt, tbl,
613 new_tbl = rhashtable_insert_one(ht, bkt, tbl,
618 rht_unlock(tbl, bkt);