ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates
authorEric Dumazet <edumazet@google.com>
Tue, 29 Mar 2016 15:43:41 +0000 (08:43 -0700)
committerSasha Levin <sasha.levin@oracle.com>
Mon, 11 Jul 2016 03:07:06 +0000 (23:07 -0400)
[ 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 <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: Sasha Levin <sasha.levin@oracle.com>
net/ipv6/udp.c

index d28b2a1ab0e510f25d0fba235b4f9247f0680dac..1173557ea55190561a7d4e1b91e3c2c6ddb72e04 100644 (file)
@@ -834,8 +834,8 @@ static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
                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;