Lines Matching refs:hash2

489 	unsigned int hash2, slot2;  in __udp4_lib_lookup()  local
493 hash2 = ipv4_portaddr_hash(net, daddr, hnum); in __udp4_lib_lookup()
494 slot2 = hash2 & udptable->mask; in __udp4_lib_lookup()
495 hslot2 = &udptable->hash2[slot2]; in __udp4_lib_lookup()
521 hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum); in __udp4_lib_lookup()
522 slot2 = hash2 & udptable->mask; in __udp4_lib_lookup()
523 hslot2 = &udptable->hash2[slot2]; in __udp4_lib_lookup()
2259 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); in __udp4_lib_mcast_deliver() local
2269 hash2 = ipv4_portaddr_hash(net, daddr, hnum) & udptable->mask; in __udp4_lib_mcast_deliver()
2271 hslot = &udptable->hash2[hash2]; in __udp4_lib_mcast_deliver()
2299 if (use_hash2 && hash2 != hash2_any) { in __udp4_lib_mcast_deliver()
2300 hash2 = hash2_any; in __udp4_lib_mcast_deliver()
2542 unsigned int hash2, slot2; in __udp4_lib_demux_lookup() local
2547 hash2 = ipv4_portaddr_hash(net, loc_addr, hnum); in __udp4_lib_demux_lookup()
2548 slot2 = hash2 & udptable->mask; in __udp4_lib_demux_lookup()
2549 hslot2 = &udptable->hash2[slot2]; in __udp4_lib_demux_lookup()
3190 struct udp_hslot *hslot2 = &udptable->hash2[state->bucket]; in bpf_iter_udp_batch()
3443 table->hash2 = table->hash + (table->mask + 1); in udp_table_init()
3450 INIT_HLIST_HEAD(&table->hash2[i].head); in udp_table_init()
3451 table->hash2[i].count = 0; in udp_table_init()
3452 spin_lock_init(&table->hash2[i].lock); in udp_table_init()
3490 udptable->hash2 = udptable->hash + hash_entries; in udp_pernet_table_alloc()
3499 INIT_HLIST_HEAD(&udptable->hash2[i].head); in udp_pernet_table_alloc()
3500 udptable->hash2[i].count = 0; in udp_pernet_table_alloc()
3501 spin_lock_init(&udptable->hash2[i].lock); in udp_pernet_table_alloc()