Lines Matching refs:hash2
186 unsigned int hash2, slot2; in __udp6_lib_lookup() local
190 hash2 = ipv6_portaddr_hash(net, daddr, hnum); in __udp6_lib_lookup()
191 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup()
192 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup()
198 hash2 = ipv6_portaddr_hash(net, &in6addr_any, hnum); in __udp6_lib_lookup()
199 slot2 = hash2 & udptable->mask; in __udp6_lib_lookup()
201 hslot2 = &udptable->hash2[slot2]; in __udp6_lib_lookup()
752 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); in __udp6_lib_mcast_deliver() local
761 hash2 = ipv6_portaddr_hash(net, daddr, hnum) & udptable->mask; in __udp6_lib_mcast_deliver()
763 hslot = &udptable->hash2[hash2]; in __udp6_lib_mcast_deliver()
796 if (use_hash2 && hash2 != hash2_any) { in __udp6_lib_mcast_deliver()
797 hash2 = hash2_any; in __udp6_lib_mcast_deliver()
956 unsigned int hash2 = ipv6_portaddr_hash(net, loc_addr, hnum); in __udp6_lib_demux_lookup() local
957 unsigned int slot2 = hash2 & udp_table.mask; in __udp6_lib_demux_lookup()
958 struct udp_hslot *hslot2 = &udp_table.hash2[slot2]; in __udp6_lib_demux_lookup()