mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
mib: add struct net to ICMP_INC_STATS
Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
43589aa93c
commit
75c939bb4d
2 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ struct icmp_err {
|
||||||
extern struct icmp_err icmp_err_convert[];
|
extern struct icmp_err icmp_err_convert[];
|
||||||
DECLARE_SNMP_STAT(struct icmp_mib, icmp_statistics);
|
DECLARE_SNMP_STAT(struct icmp_mib, icmp_statistics);
|
||||||
DECLARE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics);
|
DECLARE_SNMP_STAT(struct icmpmsg_mib, icmpmsg_statistics);
|
||||||
#define ICMP_INC_STATS(field) SNMP_INC_STATS(icmp_statistics, field)
|
#define ICMP_INC_STATS(net, field) SNMP_INC_STATS(icmp_statistics, field)
|
||||||
#define ICMP_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmp_statistics, field)
|
#define ICMP_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmp_statistics, field)
|
||||||
#define ICMPMSGOUT_INC_STATS(field) SNMP_INC_STATS(icmpmsg_statistics, field+256)
|
#define ICMPMSGOUT_INC_STATS(field) SNMP_INC_STATS(icmpmsg_statistics, field+256)
|
||||||
#define ICMPMSGIN_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmpmsg_statistics, field)
|
#define ICMPMSGIN_INC_STATS_BH(field) SNMP_INC_STATS_BH(icmpmsg_statistics, field)
|
||||||
|
|
|
@ -299,7 +299,7 @@ out:
|
||||||
void icmp_out_count(struct net *net, unsigned char type)
|
void icmp_out_count(struct net *net, unsigned char type)
|
||||||
{
|
{
|
||||||
ICMPMSGOUT_INC_STATS(type);
|
ICMPMSGOUT_INC_STATS(type);
|
||||||
ICMP_INC_STATS(ICMP_MIB_OUTMSGS);
|
ICMP_INC_STATS(net, ICMP_MIB_OUTMSGS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue