Home
last modified time | relevance | path

Searched refs:hash_rnd (Results 1 – 10 of 10) sorted by relevance

/linux-5.19.10/include/net/
Dndisc.h371 static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd) in ndisc_hashfn() argument
375 return (((p32[0] ^ hash32_ptr(dev)) * hash_rnd[0]) + in ndisc_hashfn()
376 (p32[1] * hash_rnd[1]) + in ndisc_hashfn()
377 (p32[2] * hash_rnd[2]) + in ndisc_hashfn()
378 (p32[3] * hash_rnd[3])); in ndisc_hashfn()
Darp.h13 static inline u32 arp_hashfn(const void *pkey, const struct net_device *dev, u32 *hash_rnd) in arp_hashfn() argument
18 return val * hash_rnd[0]; in arp_hashfn()
Dneighbour.h193 __u32 hash_rnd[NEIGH_NUM_HASH_RND]; member
205 __u32 *hash_rnd);
301 __u32 *hash_rnd), in ___neigh_lookup_noref() argument
309 hash_val = hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift); in ___neigh_lookup_noref()
/linux-5.19.10/include/linux/
Drhashtable.h79 u32 hash_rnd; member
127 unsigned int hash_rnd) in rht_key_get_hash() argument
133 hash = ht->p.hashfn(key, ht->key_len, hash_rnd); in rht_key_get_hash()
138 hash = params.hashfn(key, key_len, hash_rnd); in rht_key_get_hash()
140 hash = jhash(key, key_len, hash_rnd); in rht_key_get_hash()
142 hash = jhash2(key, key_len / sizeof(u32), hash_rnd); in rht_key_get_hash()
147 hash = params.hashfn(key, key_len, hash_rnd); in rht_key_get_hash()
149 hash = jhash(key, key_len, hash_rnd); in rht_key_get_hash()
159 unsigned int hash = rht_key_get_hash(ht, key, params, tbl->hash_rnd); in rht_key_hashfn()
173 tbl->hash_rnd)) : in rht_head_hashfn()
/linux-5.19.10/net/netfilter/
Dxt_recent.c109 static u_int32_t hash_rnd __read_mostly;
113 return jhash_1word((__force u32)addr->ip, hash_rnd) & in recent_entry_hash4()
119 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) & in recent_entry_hash6()
346 net_get_random_once(&hash_rnd, sizeof(hash_rnd)); in recent_mt_check()
/linux-5.19.10/net/decnet/
Ddn_neigh.c68 __u32 *hash_rnd) in dn_neigh_hash() argument
70 return jhash_2words(*(__u16 *)pkey, 0, hash_rnd[0]); in dn_neigh_hash()
/linux-5.19.10/net/ipv4/
Darp.c122 static u32 arp_hash(const void *pkey, const struct net_device *dev, __u32 *hash_rnd);
212 __u32 *hash_rnd) in arp_hash() argument
214 return arp_hashfn(pkey, dev, hash_rnd); in arp_hash()
/linux-5.19.10/net/ipv6/
Dndisc.c74 __u32 *hash_rnd);
315 __u32 *hash_rnd) in ndisc_hash() argument
317 return ndisc_hashfn(pkey, dev, hash_rnd); in ndisc_hash()
/linux-5.19.10/net/core/
Dneighbour.c239 hash_val = tbl->hash(pkey, ndel->dev, nht->hash_rnd); in neigh_remove_one()
510 neigh_get_hash_rnd(&ret->hash_rnd[i]); in neigh_hash_alloc()
553 new_nht->hash_rnd); in neigh_hash_grow()
604 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift); in neigh_lookup_nodev()
674 hash_val = tbl->hash(n->primary_key, dev, nht->hash_rnd) >> (32 - nht->hash_shift); in ___neigh_create()
2166 ndc.ndtc_hash_rnd = nht->hash_rnd[0]; in neightbl_fill_info()
/linux-5.19.10/lib/
Drhashtable.c203 tbl->hash_rnd = get_random_u32(); in bucket_table_alloc()