|
@@ -1652,10 +1652,10 @@ static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
|
|
|
|
|
|
if (use_hash2) {
|
|
|
hash2_any = udp4_portaddr_hash(net, htonl(INADDR_ANY), hnum) &
|
|
|
- udp_table.mask;
|
|
|
- hash2 = udp4_portaddr_hash(net, daddr, hnum) & udp_table.mask;
|
|
|
+ udptable->mask;
|
|
|
+ hash2 = udp4_portaddr_hash(net, daddr, hnum) & udptable->mask;
|
|
|
start_lookup:
|
|
|
- hslot = &udp_table.hash2[hash2];
|
|
|
+ hslot = &udptable->hash2[hash2];
|
|
|
offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
|
|
|
}
|
|
|
|