This source file includes following definitions.
- TAILQ_HEAD
- evcount_attach
- evcount_detach
- evcount_sysctl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 #include <sys/param.h>
29 #include <sys/evcount.h>
30 #include <sys/timeout.h>
31 #include <sys/kernel.h>
32 #include <sys/systm.h>
33 #include <sys/sysctl.h>
34
35 static TAILQ_HEAD(,evcount) evcount_list;
36
37
38
39
40 struct evcount evcount_intr;
41
42 void evcount_init(void);
43
44 void
45 evcount_init(void)
46 {
47 TAILQ_INIT(&evcount_list);
48
49 evcount_attach(&evcount_intr, "intr", NULL, NULL);
50 }
51
52
53 void
54 evcount_attach(struct evcount *ec, const char *name, void *data,
55 struct evcount *parent)
56 {
57 static int nextid = 0;
58
59 if (nextid == 0) {
60 nextid++;
61 evcount_init();
62 }
63
64 memset(ec, 0, sizeof(*ec));
65 ec->ec_name = name;
66 ec->ec_parent = parent;
67 ec->ec_id = nextid++;
68 ec->ec_data = data;
69 TAILQ_INSERT_TAIL(&evcount_list, ec, next);
70 }
71
72 void
73 evcount_detach(struct evcount *ec)
74 {
75 TAILQ_REMOVE(&evcount_list, ec, next);
76 }
77
78 #ifndef SMALL_KERNEL
79
80 int
81 evcount_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp,
82 void *newp, size_t newlen)
83 {
84 int error = 0, s, nintr, i;
85 struct evcount *ec;
86 u_int64_t count;
87
88 if (newp != NULL)
89 return (EPERM);
90
91 if (name[0] != KERN_INTRCNT_NUM) {
92 if (namelen != 2)
93 return (ENOTDIR);
94 if (name[1] < 0)
95 return (EINVAL);
96 i = name[1];
97 } else
98 i = -1;
99
100 nintr = 0;
101 TAILQ_FOREACH(ec, &evcount_list, next) {
102 if (ec->ec_parent != &evcount_intr)
103 continue;
104 if (nintr++ == i)
105 break;
106 }
107
108 switch (name[0]) {
109 case KERN_INTRCNT_NUM:
110 error = sysctl_rdint(oldp, oldlenp, NULL, nintr);
111 break;
112 case KERN_INTRCNT_CNT:
113 if (ec == NULL)
114 return (ENOENT);
115 s = splhigh();
116 count = ec->ec_count;
117 splx(s);
118 error = sysctl_rdquad(oldp, oldlenp, NULL, count);
119 break;
120 case KERN_INTRCNT_NAME:
121 if (ec == NULL)
122 return (ENOENT);
123 error = sysctl_rdstring(oldp, oldlenp, NULL, ec->ec_name);
124 break;
125 case KERN_INTRCNT_VECTOR:
126 if (ec == NULL || ec->ec_data == NULL)
127 return (ENOENT);
128 error = sysctl_rdint(oldp, oldlenp, NULL,
129 *((int *)ec->ec_data));
130 break;
131 default:
132 error = EOPNOTSUPP;
133 break;
134 }
135
136 return (error);
137 }
138 #endif