mirror of https://gitee.com/openkylin/linux.git
net: icmp: rename ICMPMSGIN_INC_STATS_BH()
Remove misleading _BH suffix. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
90bbcc6083
commit
214d3f1f87
|
@ -32,7 +32,7 @@ extern const struct icmp_err icmp_err_convert[];
|
|||
#define ICMP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.icmp_statistics, field)
|
||||
#define __ICMP_INC_STATS(net, field) SNMP_INC_STATS_BH((net)->mib.icmp_statistics, field)
|
||||
#define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field+256)
|
||||
#define ICMPMSGIN_INC_STATS_BH(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field)
|
||||
#define ICMPMSGIN_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field)
|
||||
|
||||
struct dst_entry;
|
||||
struct net_proto_family;
|
||||
|
|
|
@ -1006,7 +1006,7 @@ int icmp_rcv(struct sk_buff *skb)
|
|||
|
||||
icmph = icmp_hdr(skb);
|
||||
|
||||
ICMPMSGIN_INC_STATS_BH(net, icmph->type);
|
||||
ICMPMSGIN_INC_STATS(net, icmph->type);
|
||||
/*
|
||||
* 18 is the highest 'known' ICMP type. Anything else is a mystery
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue