Lines Matching refs:buckets
65 Neighbour hash table buckets are protected with rwlock tbl->lock.
67 - All the scans/updates to hash buckets MUST be made under this lock.
535 struct neighbour __rcu **buckets;
542 buckets = kzalloc(size, GFP_ATOMIC);
544 buckets = (struct neighbour __rcu **)
547 kmemleak_alloc(buckets, size, 1, GFP_ATOMIC);
549 if (!buckets) {
553 ret->hash_buckets = buckets;
566 struct neighbour __rcu **buckets = nht->hash_buckets;
569 kfree(buckets);
571 kmemleak_free(buckets);
572 free_pages((unsigned long)buckets, get_order(size));
1024 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.