Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d421226 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

ipv6: udp: fix UDP_MIB_IGNOREDMULTI updates



IPv6 counters updates use a different macro than IPv4.

Fixes: 36cbb245 ("udp: Increment UDP_MIB_IGNOREDMULTI for arriving unmatched multicasts")
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Cc: Rick Jones <rick.jones2@hp.com>
Cc: Willem de Bruijn <willemb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3c02d1bb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -843,7 +843,7 @@ 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,
			UDP6_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
					  proto == IPPROTO_UDPLITE);
		consume_skb(skb);
	}