mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates
[ Upstream commit2d4212261f] IPv6 counters updates use a different macro than IPv4. Fixes:36cbb2452c("udp: Increment UDP_MIB_IGNOREDMULTI for arriving unmatched multicasts") Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Rick Jones <rick.jones2@hp.com> Cc: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9603d0a58d
commit
26dd42ebff
@@ -837,8 +837,8 @@ start_lookup:
|
||||
flush_stack(stack, count, skb, count - 1);
|
||||
} else {
|
||||
if (!inner_flushed)
|
||||
UDP_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
|
||||
proto == IPPROTO_UDPLITE);
|
||||
UDP6_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
|
||||
proto == IPPROTO_UDPLITE);
|
||||
consume_skb(skb);
|
||||
}
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user