Lines Matching defs:hash
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.
239 hash_val = tbl->hash(pkey, ndel->dev, nht->hash_rnd);
580 unsigned int i, hash;
598 hash = tbl->hash(n->primary_key, n->dev,
601 hash >>= (32 - new_nht->hash_shift);
607 new_nht->hash_buckets[hash],
609 rcu_assign_pointer(new_nht->hash_buckets[hash], n);
689 hash_val = tbl->hash(n->primary_key, dev, nht->hash_rnd) >> (32 - nht->hash_shift);
1014 * It's fine to release lock here, even if hash table
1024 /* Cycle through all hash buckets every BASE_REACHABLE_TIME/2 ticks.