Lines Matching refs:buckets
66 Neighbour hash table buckets are protected with rwlock tbl->lock.
68 - All the scans/updates to hash buckets MUST be made under this lock.
479 struct neighbour __rcu **buckets;
486 buckets = kzalloc(size, GFP_ATOMIC);
488 buckets = (struct neighbour __rcu **)
491 kmemleak_alloc(buckets, size, 1, GFP_ATOMIC);
493 if (!buckets) {
497 ret->hash_buckets = buckets;
510 struct neighbour __rcu **buckets = nht->hash_buckets;
513 kfree(buckets);
515 kmemleak_free(buckets);
516 free_pages((unsigned long)buckets, get_order(size));
971 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.