Home
last modified time | relevance | path

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

/linux-4.4.14/include/net/
Dndisc.h147 static inline u32 ndisc_hashfn(const void *pkey, const struct net_device *dev, __u32 *hash_rnd) in ndisc_hashfn() argument
151 return (((p32[0] ^ hash32_ptr(dev)) * hash_rnd[0]) + in ndisc_hashfn()
152 (p32[1] * hash_rnd[1]) + in ndisc_hashfn()
153 (p32[2] * hash_rnd[2]) + in ndisc_hashfn()
154 (p32[3] * hash_rnd[3])); in ndisc_hashfn()
Darp.h12 static inline u32 arp_hashfn(const void *pkey, const struct net_device *dev, u32 *hash_rnd) in arp_hashfn() argument
17 return val * hash_rnd[0]; in arp_hashfn()
Dflowcache.h12 u32 hash_rnd; member
Dneighbour.h185 __u32 hash_rnd[NEIGH_NUM_HASH_RND]; member
197 __u32 *hash_rnd);
275 __u32 *hash_rnd), in ___neigh_lookup_noref() argument
283 hash_val = hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift); in ___neigh_lookup_noref()
/linux-4.4.14/include/linux/
Drhashtable.h71 u32 hash_rnd; member
219 hash = ht->p.hashfn(key, ht->key_len, tbl->hash_rnd); in rht_key_hashfn()
224 hash = params.hashfn(key, key_len, tbl->hash_rnd); in rht_key_hashfn()
226 hash = jhash(key, key_len, tbl->hash_rnd); in rht_key_hashfn()
229 tbl->hash_rnd); in rht_key_hashfn()
234 hash = params.hashfn(key, key_len, tbl->hash_rnd); in rht_key_hashfn()
236 hash = jhash(key, key_len, tbl->hash_rnd); in rht_key_hashfn()
251 tbl->hash_rnd)) : in rht_head_hashfn()
/linux-4.4.14/net/netfilter/
Dxt_recent.c112 static u_int32_t hash_rnd __read_mostly;
117 return jhash_1word((__force u32)addr->ip, hash_rnd) & in recent_entry_hash4()
123 return jhash2((u32 *)addr->ip6, ARRAY_SIZE(addr->ip6), hash_rnd) & in recent_entry_hash6()
344 get_random_bytes(&hash_rnd, sizeof(hash_rnd)); in recent_mt_check()
/linux-4.4.14/net/core/
Dflow.c153 get_random_bytes(&fcp->hash_rnd, sizeof(u32)); in flow_new_hash_rnd()
166 return jhash2(k, length, fcp->hash_rnd) in flow_hash_code()
Dneighbour.c340 neigh_get_hash_rnd(&ret->hash_rnd[i]); in neigh_hash_alloc()
381 new_nht->hash_rnd); in neigh_hash_grow()
432 hash_val = tbl->hash(pkey, NULL, nht->hash_rnd) >> (32 - nht->hash_shift); in neigh_lookup_nodev()
499 hash_val = tbl->hash(pkey, dev, nht->hash_rnd) >> (32 - nht->hash_shift); in __neigh_create()
1828 ndc.ndtc_hash_rnd = nht->hash_rnd[0]; in neightbl_fill_info()
/linux-4.4.14/net/decnet/
Ddn_neigh.c67 __u32 *hash_rnd) in dn_neigh_hash() argument
69 return jhash_2words(*(__u16 *)pkey, 0, hash_rnd[0]); in dn_neigh_hash()
/linux-4.4.14/lib/
Drhashtable.c137 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd)); in bucket_table_alloc()
/linux-4.4.14/net/mac80211/
Dmesh_pathtbl.c109 get_random_bytes(&newtbl->hash_rnd, in mesh_table_alloc()
110 sizeof(newtbl->hash_rnd)); in mesh_table_alloc()
193 tbl->hash_rnd) & tbl->hash_mask; in mesh_table_hash()
Dmesh.h152 __u32 hash_rnd; /* Used for hash generation */ member
Dsta_info.h599 rht_bucket_index(_tbl, sta_addr_hash(_a, ETH_ALEN, (_tbl)->hash_rnd))
/linux-4.4.14/net/ipv4/
Darp.c126 static u32 arp_hash(const void *pkey, const struct net_device *dev, __u32 *hash_rnd);
214 __u32 *hash_rnd) in arp_hash() argument
216 return arp_hashfn(pkey, dev, hash_rnd); in arp_hash()
/linux-4.4.14/net/ipv6/
Dndisc.c87 __u32 *hash_rnd);
297 __u32 *hash_rnd) in ndisc_hash() argument
299 return ndisc_hashfn(pkey, dev, hash_rnd); in ndisc_hash()