File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ DECLARE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics);
34
34
#define ICMP_INC_STATS (net , field ) SNMP_INC_STATS(icmp_statistics, field)
35
35
#define ICMP_INC_STATS_BH (net , field ) SNMP_INC_STATS_BH(icmp_statistics, field)
36
36
#define ICMPMSGOUT_INC_STATS (net , field ) SNMP_INC_STATS(icmpmsg_statistics, field+256)
37
- #define ICMPMSGIN_INC_STATS_BH (field ) SNMP_INC_STATS_BH(icmpmsg_statistics, field)
37
+ #define ICMPMSGIN_INC_STATS_BH (net , field ) SNMP_INC_STATS_BH(icmpmsg_statistics, field)
38
38
39
39
struct dst_entry ;
40
40
struct net_proto_family ;
Original file line number Diff line number Diff line change @@ -1012,7 +1012,7 @@ int icmp_rcv(struct sk_buff *skb)
1012
1012
1013
1013
icmph = icmp_hdr (skb );
1014
1014
1015
- ICMPMSGIN_INC_STATS_BH (icmph -> type );
1015
+ ICMPMSGIN_INC_STATS_BH (net , icmph -> type );
1016
1016
/*
1017
1017
* 18 is the highest 'known' ICMP type. Anything else is a mystery
1018
1018
*
You can’t perform that action at this time.
0 commit comments