[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1459266221.6473.182.camel@edumazet-glaptop3.roam.corp.google.com>
Date: Tue, 29 Mar 2016 08:43:41 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: David Miller <davem@...emloft.net>
Cc: netdev <netdev@...r.kernel.org>, Rick Jones <rick.jones2@...com>,
Willem de Bruijn <willemb@...gle.com>
Subject: [PATCH net] ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates
From: Eric Dumazet <edumazet@...gle.com>
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@...gle.com>
Cc: Rick Jones <rick.jones2@...com>
Cc: Willem de Bruijn <willemb@...gle.com>
---
net/ipv6/udp.c | 4 ++--
1 file 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:
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;
Powered by blists - more mailing lists