diff options
author | Eric Dumazet <edumazet@google.com> | 2016-03-29 11:43:41 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-30 19:01:33 -0400 |
commit | 2d4212261fdf13e29728ddb5ea9d60c342cc92b5 (patch) | |
tree | 4032bbd9c9b78f932356bad67320a086d86e7dc0 /net | |
parent | 3c02d1bb32347d0674714ee170772d771d513469 (diff) |
ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index fd25e447a5fa..8125931106be 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
@@ -843,8 +843,8 @@ start_lookup: | |||
843 | flush_stack(stack, count, skb, count - 1); | 843 | flush_stack(stack, count, skb, count - 1); |
844 | } else { | 844 | } else { |
845 | if (!inner_flushed) | 845 | if (!inner_flushed) |
846 | UDP_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI, | 846 | UDP6_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI, |
847 | proto == IPPROTO_UDPLITE); | 847 | proto == IPPROTO_UDPLITE); |
848 | consume_skb(skb); | 848 | consume_skb(skb); |
849 | } | 849 | } |
850 | return 0; | 850 | return 0; |