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

Commit 55d43808 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller
Browse files

ipv6: added net argument to ICMP6MSGIN_INC_STATS_BH

parent a712d3e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -148,8 +148,8 @@ DECLARE_SNMP_STAT(struct icmpv6msg_mib, icmpv6msg_statistics);
	_DEVINC(icmpv6msg, , idev, field +256); })
#define ICMP6MSGOUT_INC_STATS_BH(net, idev, field) ({ (void)(net); \
	_DEVINC(icmpv6msg, _BH, idev, field +256); })
#define ICMP6MSGIN_INC_STATS_BH(idev, field) \
	_DEVINC(icmpv6msg, _BH, idev, field)
#define ICMP6MSGIN_INC_STATS_BH(net, idev, field) ({ (void)(net); \
	_DEVINC(icmpv6msg, _BH, idev, field); })

struct ip6_ra_chain
{
+1 −1
Original line number Diff line number Diff line
@@ -693,7 +693,7 @@ static int icmpv6_rcv(struct sk_buff *skb)

	type = hdr->icmp6_type;

	ICMP6MSGIN_INC_STATS_BH(idev, type);
	ICMP6MSGIN_INC_STATS_BH(dev_net(dev), idev, type);

	switch (type) {
	case ICMPV6_ECHO_REQUEST: