From: Eric Dumazet Date: Tue, 29 Mar 2016 15:43:41 +0000 (-0700) Subject: ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates X-Git-Tag: v4.5.2~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0527ab3c6fd97a8c69b0613a140710efd4b94f16;p=thirdparty%2Fkernel%2Fstable.git ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates [ Upstream commit 2d4212261fdf13e29728ddb5ea9d60c342cc92b5 ] IPv6 counters updates use a different macro than IPv4. Fixes: 36cbb2452cbaf ("udp: Increment UDP_MIB_IGNOREDMULTI for arriving unmatched multicasts") Signed-off-by: Eric Dumazet Cc: Rick Jones Cc: Willem de Bruijn Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index 422dd014aa2ce..6794120f53b8f 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -883,8 +883,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;