1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#ifndef _SNMP_H
20#define _SNMP_H
21
22#include <linux/cache.h>
23#include <linux/snmp.h>
24#include <linux/smp.h>
25
26
27
28
29
30
31
32
33
34struct snmp_mib {
35 const char *name;
36 int entry;
37};
38
39#define SNMP_MIB_ITEM(_name,_entry) { \
40 .name = _name, \
41 .entry = _entry, \
42}
43
44#define SNMP_MIB_SENTINEL { \
45 .name = NULL, \
46 .entry = 0, \
47}
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68#define __SNMP_MIB_ALIGN__ ____cacheline_aligned
69
70
71#define IPSTATS_MIB_MAX __IPSTATS_MIB_MAX
72struct ipstats_mib {
73 unsigned long mibs[IPSTATS_MIB_MAX];
74} __SNMP_MIB_ALIGN__;
75
76
77#define ICMP_MIB_DUMMY __ICMP_MIB_MAX
78#define ICMP_MIB_MAX (__ICMP_MIB_MAX + 1)
79
80struct icmp_mib {
81 unsigned long mibs[ICMP_MIB_MAX];
82} __SNMP_MIB_ALIGN__;
83
84#define ICMPMSG_MIB_MAX __ICMPMSG_MIB_MAX
85struct icmpmsg_mib {
86 unsigned long mibs[ICMPMSG_MIB_MAX];
87} __SNMP_MIB_ALIGN__;
88
89
90#define ICMP6_MIB_MAX __ICMP6_MIB_MAX
91struct icmpv6_mib {
92 unsigned long mibs[ICMP6_MIB_MAX];
93} __SNMP_MIB_ALIGN__;
94
95#define ICMP6MSG_MIB_MAX __ICMP6MSG_MIB_MAX
96struct icmpv6msg_mib {
97 unsigned long mibs[ICMP6MSG_MIB_MAX];
98} __SNMP_MIB_ALIGN__;
99
100
101
102#define TCP_MIB_MAX __TCP_MIB_MAX
103struct tcp_mib {
104 unsigned long mibs[TCP_MIB_MAX];
105} __SNMP_MIB_ALIGN__;
106
107
108#define UDP_MIB_MAX __UDP_MIB_MAX
109struct udp_mib {
110 unsigned long mibs[UDP_MIB_MAX];
111} __SNMP_MIB_ALIGN__;
112
113
114#define LINUX_MIB_MAX __LINUX_MIB_MAX
115struct linux_mib {
116 unsigned long mibs[LINUX_MIB_MAX];
117};
118
119
120#define LINUX_MIB_XFRMMAX __LINUX_MIB_XFRMMAX
121struct linux_xfrm_mib {
122 unsigned long mibs[LINUX_MIB_XFRMMAX];
123};
124
125
126
127
128
129
130
131#define DEFINE_SNMP_STAT(type, name) \
132 __typeof__(type) __percpu *name[2]
133#define DECLARE_SNMP_STAT(type, name) \
134 extern __typeof__(type) __percpu *name[2]
135
136#define SNMP_STAT_BHPTR(name) (name[0])
137#define SNMP_STAT_USRPTR(name) (name[1])
138
139#define SNMP_INC_STATS_BH(mib, field) \
140 __this_cpu_inc(mib[0]->mibs[field])
141#define SNMP_INC_STATS_USER(mib, field) \
142 this_cpu_inc(mib[1]->mibs[field])
143#define SNMP_INC_STATS(mib, field) \
144 this_cpu_inc(mib[!in_softirq()]->mibs[field])
145#define SNMP_DEC_STATS(mib, field) \
146 this_cpu_dec(mib[!in_softirq()]->mibs[field])
147#define SNMP_ADD_STATS_BH(mib, field, addend) \
148 __this_cpu_add(mib[0]->mibs[field], addend)
149#define SNMP_ADD_STATS_USER(mib, field, addend) \
150 this_cpu_add(mib[1]->mibs[field], addend)
151
152
153
154
155#define SNMP_UPD_PO_STATS(mib, basefield, addend) \
156 do { \
157 __typeof__(*mib[0]) *ptr; \
158 preempt_disable(); \
159 ptr = this_cpu_ptr((mib)[!in_softirq()]); \
160 ptr->mibs[basefield##PKTS]++; \
161 ptr->mibs[basefield##OCTETS] += addend;\
162 preempt_enable(); \
163 } while (0)
164#define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \
165 do { \
166 __typeof__(*mib[0]) *ptr = \
167 __this_cpu_ptr((mib)[!in_softirq()]); \
168 ptr->mibs[basefield##PKTS]++; \
169 ptr->mibs[basefield##OCTETS] += addend;\
170 } while (0)
171#endif
172