Lines Matching refs:hash2
205 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask); in __udp6_lib_lookup() local
212 hash2 = ipv6_portaddr_hash(net, daddr, hnum); in __udp6_lib_lookup()
213 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup()
214 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup()
223 hash2 = ipv6_portaddr_hash(net, &in6addr_any, hnum); in __udp6_lib_lookup()
224 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup()
229 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup()
688 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); in __udp6_lib_mcast_deliver() local
696 hash2 = ipv6_portaddr_hash(net, daddr, hnum) & udptable->mask; in __udp6_lib_mcast_deliver()
698 hslot = &udptable->hash2[hash2]; in __udp6_lib_mcast_deliver()
730 if (use_hash2 && hash2 != hash2_any) { in __udp6_lib_mcast_deliver()
731 hash2 = hash2_any; in __udp6_lib_mcast_deliver()
891 unsigned int hash2 = ipv6_portaddr_hash(net, loc_addr, hnum); in __udp6_lib_demux_lookup() local
892 unsigned int slot2 = hash2 & udp_table.mask; in __udp6_lib_demux_lookup()
893 struct udp_hslot *hslot2 = &udp_table.hash2[slot2]; in __udp6_lib_demux_lookup()