1 | #ifndef _PROFILE_H_
|
---|
2 | #define _PROFILE_H_
|
---|
3 | /*
|
---|
4 | Unix SMB/CIFS implementation.
|
---|
5 | store smbd profiling information in shared memory
|
---|
6 | Copyright (C) Andrew Tridgell 1999
|
---|
7 | Copyright (C) James Peach 2006
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or modify
|
---|
10 | it under the terms of the GNU General Public License as published by
|
---|
11 | the Free Software Foundation; either version 2 of the License, or
|
---|
12 | (at your option) any later version.
|
---|
13 |
|
---|
14 | This program is distributed in the hope that it will be useful,
|
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | GNU General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU General Public License
|
---|
20 | along with this program; if not, write to the Free Software
|
---|
21 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
22 |
|
---|
23 | */
|
---|
24 |
|
---|
25 | /* this file defines the profile structure in the profile shared
|
---|
26 | memory area */
|
---|
27 |
|
---|
28 | #define PROF_SHMEM_KEY ((key_t)0x07021999)
|
---|
29 | #define PROF_SHM_MAGIC 0x6349985
|
---|
30 | #define PROF_SHM_VERSION 11
|
---|
31 |
|
---|
32 | /* time values in the following structure are in microseconds */
|
---|
33 |
|
---|
34 | #define __profile_stats_value(which, domain) domain[which]
|
---|
35 |
|
---|
36 | enum profile_stats_values
|
---|
37 | {
|
---|
38 | PR_VALUE_SMBD_IDLE = 0,
|
---|
39 | #define smbd_idle_count __profile_stats_value(PR_VALUE_SMBD_IDLE, count)
|
---|
40 | #define smbd_idle_time __profile_stats_value(PR_VALUE_SMBD_IDLE, time)
|
---|
41 |
|
---|
42 | /* system call counters */
|
---|
43 | PR_VALUE_SYSCALL_OPENDIR,
|
---|
44 | #define syscall_opendir_count __profile_stats_value(PR_VALUE_SYSCALL_OPENDIR, count)
|
---|
45 | #define syscall_opendir_time __profile_stats_value(PR_VALUE_SYSCALL_OPENDIR, time)
|
---|
46 |
|
---|
47 | PR_VALUE_SYSCALL_READDIR,
|
---|
48 | #define syscall_readdir_count __profile_stats_value(PR_VALUE_SYSCALL_READDIR, count)
|
---|
49 | #define syscall_readdir_time __profile_stats_value(PR_VALUE_SYSCALL_READDIR, time)
|
---|
50 |
|
---|
51 | PR_VALUE_SYSCALL_SEEKDIR,
|
---|
52 | #define syscall_seekdir_count __profile_stats_value(PR_VALUE_SYSCALL_SEEKDIR, count)
|
---|
53 | #define syscall_seekdir_time __profile_stats_value(PR_VALUE_SYSCALL_SEEKDIR, time)
|
---|
54 |
|
---|
55 | PR_VALUE_SYSCALL_TELLDIR,
|
---|
56 | #define syscall_telldir_count __profile_stats_value(PR_VALUE_SYSCALL_TELLDIR, count)
|
---|
57 | #define syscall_telldir_time __profile_stats_value(PR_VALUE_SYSCALL_TELLDIR, time)
|
---|
58 |
|
---|
59 | PR_VALUE_SYSCALL_REWINDDIR,
|
---|
60 | #define syscall_rewinddir_count __profile_stats_value(PR_VALUE_SYSCALL_REWINDDIR, count)
|
---|
61 | #define syscall_rewinddir_time __profile_stats_value(PR_VALUE_SYSCALL_REWINDDIR, time)
|
---|
62 |
|
---|
63 | PR_VALUE_SYSCALL_MKDIR,
|
---|
64 | #define syscall_mkdir_count __profile_stats_value(PR_VALUE_SYSCALL_MKDIR, count)
|
---|
65 | #define syscall_mkdir_time __profile_stats_value(PR_VALUE_SYSCALL_MKDIR, time)
|
---|
66 |
|
---|
67 | PR_VALUE_SYSCALL_RMDIR,
|
---|
68 | #define syscall_rmdir_count __profile_stats_value(PR_VALUE_SYSCALL_RMDIR, count)
|
---|
69 | #define syscall_rmdir_time __profile_stats_value(PR_VALUE_SYSCALL_RMDIR, time)
|
---|
70 |
|
---|
71 | PR_VALUE_SYSCALL_CLOSEDIR,
|
---|
72 | #define syscall_closedir_count __profile_stats_value(PR_VALUE_SYSCALL_CLOSEDIR, count)
|
---|
73 | #define syscall_closedir_time __profile_stats_value(PR_VALUE_SYSCALL_CLOSEDIR, time)
|
---|
74 |
|
---|
75 | PR_VALUE_SYSCALL_OPEN,
|
---|
76 | #define syscall_open_count __profile_stats_value(PR_VALUE_SYSCALL_OPEN, count)
|
---|
77 | #define syscall_open_time __profile_stats_value(PR_VALUE_SYSCALL_OPEN, time)
|
---|
78 |
|
---|
79 | PR_VALUE_SYSCALL_CLOSE,
|
---|
80 | #define syscall_close_count __profile_stats_value(PR_VALUE_SYSCALL_CLOSE, count)
|
---|
81 | #define syscall_close_time __profile_stats_value(PR_VALUE_SYSCALL_CLOSE, time)
|
---|
82 |
|
---|
83 | PR_VALUE_SYSCALL_READ,
|
---|
84 | #define syscall_read_count __profile_stats_value(PR_VALUE_SYSCALL_READ, count)
|
---|
85 | #define syscall_read_time __profile_stats_value(PR_VALUE_SYSCALL_READ, time)
|
---|
86 |
|
---|
87 | PR_VALUE_SYSCALL_PREAD,
|
---|
88 | #define syscall_pread_count __profile_stats_value(PR_VALUE_SYSCALL_PREAD, count)
|
---|
89 | #define syscall_pread_time __profile_stats_value(PR_VALUE_SYSCALL_PREAD, time)
|
---|
90 |
|
---|
91 | PR_VALUE_SYSCALL_WRITE,
|
---|
92 | #define syscall_write_count __profile_stats_value(PR_VALUE_SYSCALL_WRITE, count)
|
---|
93 | #define syscall_write_time __profile_stats_value(PR_VALUE_SYSCALL_WRITE, time)
|
---|
94 |
|
---|
95 | PR_VALUE_SYSCALL_PWRITE,
|
---|
96 | #define syscall_pwrite_count __profile_stats_value(PR_VALUE_SYSCALL_PWRITE, count)
|
---|
97 | #define syscall_pwrite_time __profile_stats_value(PR_VALUE_SYSCALL_PWRITE, time)
|
---|
98 |
|
---|
99 | PR_VALUE_SYSCALL_LSEEK,
|
---|
100 | #define syscall_lseek_count __profile_stats_value(PR_VALUE_SYSCALL_LSEEK, count)
|
---|
101 | #define syscall_lseek_time __profile_stats_value(PR_VALUE_SYSCALL_LSEEK, time)
|
---|
102 |
|
---|
103 | PR_VALUE_SYSCALL_SENDFILE,
|
---|
104 | #define syscall_sendfile_count __profile_stats_value(PR_VALUE_SYSCALL_SENDFILE, count)
|
---|
105 | #define syscall_sendfile_time __profile_stats_value(PR_VALUE_SYSCALL_SENDFILE, time)
|
---|
106 |
|
---|
107 | PR_VALUE_SYSCALL_RENAME,
|
---|
108 | #define syscall_rename_count __profile_stats_value(PR_VALUE_SYSCALL_RENAME, count)
|
---|
109 | #define syscall_rename_time __profile_stats_value(PR_VALUE_SYSCALL_RENAME, time)
|
---|
110 |
|
---|
111 | PR_VALUE_SYSCALL_FSYNC,
|
---|
112 | #define syscall_fsync_count __profile_stats_value(PR_VALUE_SYSCALL_FSYNC, count)
|
---|
113 | #define syscall_fsync_time __profile_stats_value(PR_VALUE_SYSCALL_FSYNC, time)
|
---|
114 |
|
---|
115 | PR_VALUE_SYSCALL_STAT,
|
---|
116 | #define syscall_stat_count __profile_stats_value(PR_VALUE_SYSCALL_STAT, count)
|
---|
117 | #define syscall_stat_time __profile_stats_value(PR_VALUE_SYSCALL_STAT, time)
|
---|
118 |
|
---|
119 | PR_VALUE_SYSCALL_FSTAT,
|
---|
120 | #define syscall_fstat_count __profile_stats_value(PR_VALUE_SYSCALL_FSTAT, count)
|
---|
121 | #define syscall_fstat_time __profile_stats_value(PR_VALUE_SYSCALL_FSTAT, time)
|
---|
122 |
|
---|
123 | PR_VALUE_SYSCALL_LSTAT,
|
---|
124 | #define syscall_lstat_count __profile_stats_value(PR_VALUE_SYSCALL_LSTAT, count)
|
---|
125 | #define syscall_lstat_time __profile_stats_value(PR_VALUE_SYSCALL_LSTAT, time)
|
---|
126 |
|
---|
127 | PR_VALUE_SYSCALL_UNLINK,
|
---|
128 | #define syscall_unlink_count __profile_stats_value(PR_VALUE_SYSCALL_UNLINK, count)
|
---|
129 | #define syscall_unlink_time __profile_stats_value(PR_VALUE_SYSCALL_UNLINK, time)
|
---|
130 |
|
---|
131 | PR_VALUE_SYSCALL_CHMOD,
|
---|
132 | #define syscall_chmod_count __profile_stats_value(PR_VALUE_SYSCALL_CHMOD, count)
|
---|
133 | #define syscall_chmod_time __profile_stats_value(PR_VALUE_SYSCALL_CHMOD, time)
|
---|
134 |
|
---|
135 | PR_VALUE_SYSCALL_FCHMOD,
|
---|
136 | #define syscall_fchmod_count __profile_stats_value(PR_VALUE_SYSCALL_FCHMOD, count)
|
---|
137 | #define syscall_fchmod_time __profile_stats_value(PR_VALUE_SYSCALL_FCHMOD, time)
|
---|
138 |
|
---|
139 | PR_VALUE_SYSCALL_CHOWN,
|
---|
140 | #define syscall_chown_count __profile_stats_value(PR_VALUE_SYSCALL_CHOWN, count)
|
---|
141 | #define syscall_chown_time __profile_stats_value(PR_VALUE_SYSCALL_CHOWN, time)
|
---|
142 |
|
---|
143 | PR_VALUE_SYSCALL_FCHOWN,
|
---|
144 | #define syscall_fchown_count __profile_stats_value(PR_VALUE_SYSCALL_FCHOWN, count)
|
---|
145 | #define syscall_fchown_time __profile_stats_value(PR_VALUE_SYSCALL_FCHOWN, time)
|
---|
146 |
|
---|
147 | PR_VALUE_SYSCALL_CHDIR,
|
---|
148 | #define syscall_chdir_count __profile_stats_value(PR_VALUE_SYSCALL_CHDIR, count)
|
---|
149 | #define syscall_chdir_time __profile_stats_value(PR_VALUE_SYSCALL_CHDIR, time)
|
---|
150 |
|
---|
151 | PR_VALUE_SYSCALL_GETWD,
|
---|
152 | #define syscall_getwd_count __profile_stats_value(PR_VALUE_SYSCALL_GETWD, count)
|
---|
153 | #define syscall_getwd_time __profile_stats_value(PR_VALUE_SYSCALL_GETWD, time)
|
---|
154 |
|
---|
155 | PR_VALUE_SYSCALL_NTIMES,
|
---|
156 | #define syscall_ntimes_count __profile_stats_value(PR_VALUE_SYSCALL_NTIMES, count)
|
---|
157 | #define syscall_ntimes_time __profile_stats_value(PR_VALUE_SYSCALL_NTIMES, time)
|
---|
158 |
|
---|
159 | PR_VALUE_SYSCALL_FTRUNCATE,
|
---|
160 | #define syscall_ftruncate_count __profile_stats_value(PR_VALUE_SYSCALL_FTRUNCATE, count)
|
---|
161 | #define syscall_ftruncate_time __profile_stats_value(PR_VALUE_SYSCALL_FTRUNCATE, time)
|
---|
162 |
|
---|
163 | PR_VALUE_SYSCALL_FCNTL_LOCK,
|
---|
164 | #define syscall_fcntl_lock_count __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_LOCK, count)
|
---|
165 | #define syscall_fcntl_lock_time __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_LOCK, time)
|
---|
166 |
|
---|
167 | PR_VALUE_SYSCALL_KERNEL_FLOCK,
|
---|
168 | #define syscall_kernel_flock_count __profile_stats_value(PR_VALUE_SYSCALL_KERNEL_FLOCK, count)
|
---|
169 | #define syscall_kernel_flock_time __profile_stats_value(PR_VALUE_SYSCALL_KERNEL_FLOCK, time)
|
---|
170 |
|
---|
171 | PR_VALUE_SYSCALL_LINUX_SETLEASE,
|
---|
172 | #define syscall_linux_setlease_count __profile_stats_value(PR_VALUE_SYSCALL_LINUX_SETLEASE, count)
|
---|
173 | #define syscall_linux_setlease_time __profile_stats_value(PR_VALUE_SYSCALL_LINUX_SETLEASE, time)
|
---|
174 |
|
---|
175 | PR_VALUE_SYSCALL_FCNTL_GETLOCK,
|
---|
176 | #define syscall_fcntl_getlock_count __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_GETLOCK, count)
|
---|
177 | #define syscall_fcntl_getlock_time __profile_stats_value(PR_VALUE_SYSCALL_FCNTL_GETLOCK, time)
|
---|
178 |
|
---|
179 | PR_VALUE_SYSCALL_READLINK,
|
---|
180 | #define syscall_readlink_count __profile_stats_value(PR_VALUE_SYSCALL_READLINK, count)
|
---|
181 | #define syscall_readlink_time __profile_stats_value(PR_VALUE_SYSCALL_READLINK, time)
|
---|
182 |
|
---|
183 | PR_VALUE_SYSCALL_SYMLINK,
|
---|
184 | #define syscall_symlink_count __profile_stats_value(PR_VALUE_SYSCALL_SYMLINK, count)
|
---|
185 | #define syscall_symlink_time __profile_stats_value(PR_VALUE_SYSCALL_SYMLINK, time)
|
---|
186 |
|
---|
187 | PR_VALUE_SYSCALL_LINK,
|
---|
188 | #define syscall_link_count __profile_stats_value(PR_VALUE_SYSCALL_LINK, count)
|
---|
189 | #define syscall_link_time __profile_stats_value(PR_VALUE_SYSCALL_LINK, time)
|
---|
190 |
|
---|
191 | PR_VALUE_SYSCALL_MKNOD,
|
---|
192 | #define syscall_mknod_count __profile_stats_value(PR_VALUE_SYSCALL_MKNOD, count)
|
---|
193 | #define syscall_mknod_time __profile_stats_value(PR_VALUE_SYSCALL_MKNOD, time)
|
---|
194 |
|
---|
195 | PR_VALUE_SYSCALL_REALPATH,
|
---|
196 | #define syscall_realpath_count __profile_stats_value(PR_VALUE_SYSCALL_REALPATH, count)
|
---|
197 | #define syscall_realpath_time __profile_stats_value(PR_VALUE_SYSCALL_REALPATH, time)
|
---|
198 |
|
---|
199 | PR_VALUE_SYSCALL_GET_QUOTA,
|
---|
200 | #define syscall_get_quota_count __profile_stats_value(PR_VALUE_SYSCALL_GET_QUOTA, count)
|
---|
201 | #define syscall_get_quota_time __profile_stats_value(PR_VALUE_SYSCALL_GET_QUOTA, time)
|
---|
202 |
|
---|
203 | PR_VALUE_SYSCALL_SET_QUOTA,
|
---|
204 | #define syscall_set_quota_count __profile_stats_value(PR_VALUE_SYSCALL_SET_QUOTA, count)
|
---|
205 | #define syscall_set_quota_time __profile_stats_value(PR_VALUE_SYSCALL_SET_QUOTA, time)
|
---|
206 |
|
---|
207 | /* counters for individual SMB types */
|
---|
208 | PR_VALUE_SMBMKDIR,
|
---|
209 | #define SMBmkdir_count __profile_stats_value(PR_VALUE_SMBMKDIR, count)
|
---|
210 | #define SMBmkdir_time __profile_stats_value(PR_VALUE_SMBMKDIR, time)
|
---|
211 |
|
---|
212 | PR_VALUE_SMBRMDIR,
|
---|
213 | #define SMBrmdir_count __profile_stats_value(PR_VALUE_SMBRMDIR, count)
|
---|
214 | #define SMBrmdir_time __profile_stats_value(PR_VALUE_SMBRMDIR, time)
|
---|
215 |
|
---|
216 | PR_VALUE_SMBOPEN,
|
---|
217 | #define SMBopen_count __profile_stats_value(PR_VALUE_SMBOPEN, count)
|
---|
218 | #define SMBopen_time __profile_stats_value(PR_VALUE_SMBOPEN, time)
|
---|
219 |
|
---|
220 | PR_VALUE_SMBCREATE,
|
---|
221 | #define SMBcreate_count __profile_stats_value(PR_VALUE_SMBCREATE, count)
|
---|
222 | #define SMBcreate_time __profile_stats_value(PR_VALUE_SMBCREATE, time)
|
---|
223 |
|
---|
224 | PR_VALUE_SMBCLOSE,
|
---|
225 | #define SMBclose_count __profile_stats_value(PR_VALUE_SMBCLOSE, count)
|
---|
226 | #define SMBclose_time __profile_stats_value(PR_VALUE_SMBCLOSE, time)
|
---|
227 |
|
---|
228 | PR_VALUE_SMBFLUSH,
|
---|
229 | #define SMBflush_count __profile_stats_value(PR_VALUE_SMBFLUSH, count)
|
---|
230 | #define SMBflush_time __profile_stats_value(PR_VALUE_SMBFLUSH, time)
|
---|
231 |
|
---|
232 | PR_VALUE_SMBUNLINK,
|
---|
233 | #define SMBunlink_count __profile_stats_value(PR_VALUE_SMBUNLINK, count)
|
---|
234 | #define SMBunlink_time __profile_stats_value(PR_VALUE_SMBUNLINK, time)
|
---|
235 |
|
---|
236 | PR_VALUE_SMBMV,
|
---|
237 | #define SMBmv_count __profile_stats_value(PR_VALUE_SMBMV, count)
|
---|
238 | #define SMBmv_time __profile_stats_value(PR_VALUE_SMBMV, time)
|
---|
239 |
|
---|
240 | PR_VALUE_SMBGETATR,
|
---|
241 | #define SMBgetatr_count __profile_stats_value(PR_VALUE_SMBGETATR, count)
|
---|
242 | #define SMBgetatr_time __profile_stats_value(PR_VALUE_SMBGETATR, time)
|
---|
243 |
|
---|
244 | PR_VALUE_SMBSETATR,
|
---|
245 | #define SMBsetatr_count __profile_stats_value(PR_VALUE_SMBSETATR, count)
|
---|
246 | #define SMBsetatr_time __profile_stats_value(PR_VALUE_SMBSETATR, time)
|
---|
247 |
|
---|
248 | PR_VALUE_SMBREAD,
|
---|
249 | #define SMBread_count __profile_stats_value(PR_VALUE_SMBREAD, count)
|
---|
250 | #define SMBread_time __profile_stats_value(PR_VALUE_SMBREAD, time)
|
---|
251 |
|
---|
252 | PR_VALUE_SMBWRITE,
|
---|
253 | #define SMBwrite_count __profile_stats_value(PR_VALUE_SMBWRITE, count)
|
---|
254 | #define SMBwrite_time __profile_stats_value(PR_VALUE_SMBWRITE, time)
|
---|
255 |
|
---|
256 | PR_VALUE_SMBLOCK,
|
---|
257 | #define SMBlock_count __profile_stats_value(PR_VALUE_SMBLOCK, count)
|
---|
258 | #define SMBlock_time __profile_stats_value(PR_VALUE_SMBLOCK, time)
|
---|
259 |
|
---|
260 | PR_VALUE_SMBUNLOCK,
|
---|
261 | #define SMBunlock_count __profile_stats_value(PR_VALUE_SMBUNLOCK, count)
|
---|
262 | #define SMBunlock_time __profile_stats_value(PR_VALUE_SMBUNLOCK, time)
|
---|
263 |
|
---|
264 | PR_VALUE_SMBCTEMP,
|
---|
265 | #define SMBctemp_count __profile_stats_value(PR_VALUE_SMBCTEMP, count)
|
---|
266 | #define SMBctemp_time __profile_stats_value(PR_VALUE_SMBCTEMP, time)
|
---|
267 |
|
---|
268 | /* SMBmknew stats are currently combined with SMBcreate */
|
---|
269 | PR_VALUE_SMBMKNEW,
|
---|
270 | #define SMBmknew_count __profile_stats_value(PR_VALUE_SMBMKNEW, count)
|
---|
271 | #define SMBmknew_time __profile_stats_value(PR_VALUE_SMBMKNEW, time)
|
---|
272 |
|
---|
273 | PR_VALUE_SMBCHECKPATH,
|
---|
274 | #define SMBcheckpath_count __profile_stats_value(PR_VALUE_SMBCHECKPATH, count)
|
---|
275 | #define SMBcheckpath_time __profile_stats_value(PR_VALUE_SMBCHECKPATH, time)
|
---|
276 |
|
---|
277 | PR_VALUE_SMBEXIT,
|
---|
278 | #define SMBexit_count __profile_stats_value(PR_VALUE_SMBEXIT, count)
|
---|
279 | #define SMBexit_time __profile_stats_value(PR_VALUE_SMBEXIT, time)
|
---|
280 |
|
---|
281 | PR_VALUE_SMBLSEEK,
|
---|
282 | #define SMBlseek_count __profile_stats_value(PR_VALUE_SMBLSEEK, count)
|
---|
283 | #define SMBlseek_time __profile_stats_value(PR_VALUE_SMBLSEEK, time)
|
---|
284 |
|
---|
285 | PR_VALUE_SMBLOCKREAD,
|
---|
286 | #define SMBlockread_count __profile_stats_value(PR_VALUE_SMBLOCKREAD, count)
|
---|
287 | #define SMBlockread_time __profile_stats_value(PR_VALUE_SMBLOCKREAD, time)
|
---|
288 |
|
---|
289 | PR_VALUE_SMBWRITEUNLOCK,
|
---|
290 | #define SMBwriteunlock_count __profile_stats_value(PR_VALUE_SMBWRITEUNLOCK, count)
|
---|
291 | #define SMBwriteunlock_time __profile_stats_value(PR_VALUE_SMBWRITEUNLOCK, time)
|
---|
292 |
|
---|
293 | PR_VALUE_SMBREADBRAW,
|
---|
294 | #define SMBreadbraw_count __profile_stats_value(PR_VALUE_SMBREADBRAW, count)
|
---|
295 | #define SMBreadbraw_time __profile_stats_value(PR_VALUE_SMBREADBRAW, time)
|
---|
296 |
|
---|
297 | PR_VALUE_SMBREADBMPX,
|
---|
298 | #define SMBreadBmpx_count __profile_stats_value(PR_VALUE_SMBREADBMPX, count)
|
---|
299 | #define SMBreadBmpx_time __profile_stats_value(PR_VALUE_SMBREADBMPX, time)
|
---|
300 |
|
---|
301 | PR_VALUE_SMBREADBS,
|
---|
302 | #define SMBreadBs_count __profile_stats_value(PR_VALUE_SMBREADBS, count)
|
---|
303 | #define SMBreadBs_time __profile_stats_value(PR_VALUE_SMBREADBS, time)
|
---|
304 |
|
---|
305 | PR_VALUE_SMBWRITEBRAW,
|
---|
306 | #define SMBwritebraw_count __profile_stats_value(PR_VALUE_SMBWRITEBRAW, count)
|
---|
307 | #define SMBwritebraw_time __profile_stats_value(PR_VALUE_SMBWRITEBRAW, time)
|
---|
308 |
|
---|
309 | PR_VALUE_SMBWRITEBMPX,
|
---|
310 | #define SMBwriteBmpx_count __profile_stats_value(PR_VALUE_SMBWRITEBMPX, count)
|
---|
311 | #define SMBwriteBmpx_time __profile_stats_value(PR_VALUE_SMBWRITEBMPX, time)
|
---|
312 |
|
---|
313 | PR_VALUE_SMBWRITEBS,
|
---|
314 | #define SMBwriteBs_count __profile_stats_value(PR_VALUE_SMBWRITEBS, count)
|
---|
315 | #define SMBwriteBs_time __profile_stats_value(PR_VALUE_SMBWRITEBS, time)
|
---|
316 |
|
---|
317 | PR_VALUE_SMBWRITEC,
|
---|
318 | #define SMBwritec_count __profile_stats_value(PR_VALUE_SMBWRITEC, count)
|
---|
319 | #define SMBwritec_time __profile_stats_value(PR_VALUE_SMBWRITEC, time)
|
---|
320 |
|
---|
321 | PR_VALUE_SMBSETATTRE,
|
---|
322 | #define SMBsetattrE_count __profile_stats_value(PR_VALUE_SMBSETATTRE, count)
|
---|
323 | #define SMBsetattrE_time __profile_stats_value(PR_VALUE_SMBSETATTRE, time)
|
---|
324 |
|
---|
325 | PR_VALUE_SMBGETATTRE,
|
---|
326 | #define SMBgetattrE_count __profile_stats_value(PR_VALUE_SMBGETATTRE, count)
|
---|
327 | #define SMBgetattrE_time __profile_stats_value(PR_VALUE_SMBGETATTRE, time)
|
---|
328 |
|
---|
329 | PR_VALUE_SMBLOCKINGX,
|
---|
330 | #define SMBlockingX_count __profile_stats_value(PR_VALUE_SMBLOCKINGX, count)
|
---|
331 | #define SMBlockingX_time __profile_stats_value(PR_VALUE_SMBLOCKINGX, time)
|
---|
332 |
|
---|
333 | PR_VALUE_SMBTRANS,
|
---|
334 | #define SMBtrans_count __profile_stats_value(PR_VALUE_SMBTRANS, count)
|
---|
335 | #define SMBtrans_time __profile_stats_value(PR_VALUE_SMBTRANS, time)
|
---|
336 |
|
---|
337 | PR_VALUE_SMBTRANSS,
|
---|
338 | #define SMBtranss_count __profile_stats_value(PR_VALUE_SMBTRANSS, count)
|
---|
339 | #define SMBtranss_time __profile_stats_value(PR_VALUE_SMBTRANSS, time)
|
---|
340 |
|
---|
341 | PR_VALUE_SMBIOCTL,
|
---|
342 | #define SMBioctl_count __profile_stats_value(PR_VALUE_SMBIOCTL, count)
|
---|
343 | #define SMBioctl_time __profile_stats_value(PR_VALUE_SMBIOCTL, time)
|
---|
344 |
|
---|
345 | PR_VALUE_SMBIOCTLS,
|
---|
346 | #define SMBioctls_count __profile_stats_value(PR_VALUE_SMBIOCTLS, count)
|
---|
347 | #define SMBioctls_time __profile_stats_value(PR_VALUE_SMBIOCTLS, time)
|
---|
348 |
|
---|
349 | PR_VALUE_SMBCOPY,
|
---|
350 | #define SMBcopy_count __profile_stats_value(PR_VALUE_SMBCOPY, count)
|
---|
351 | #define SMBcopy_time __profile_stats_value(PR_VALUE_SMBCOPY, time)
|
---|
352 |
|
---|
353 | PR_VALUE_SMBMOVE,
|
---|
354 | #define SMBmove_count __profile_stats_value(PR_VALUE_SMBMOVE, count)
|
---|
355 | #define SMBmove_time __profile_stats_value(PR_VALUE_SMBMOVE, time)
|
---|
356 |
|
---|
357 | PR_VALUE_SMBECHO,
|
---|
358 | #define SMBecho_count __profile_stats_value(PR_VALUE_SMBECHO, count)
|
---|
359 | #define SMBecho_time __profile_stats_value(PR_VALUE_SMBECHO, time)
|
---|
360 |
|
---|
361 | PR_VALUE_SMBWRITECLOSE,
|
---|
362 | #define SMBwriteclose_count __profile_stats_value(PR_VALUE_SMBWRITECLOSE, count)
|
---|
363 | #define SMBwriteclose_time __profile_stats_value(PR_VALUE_SMBWRITECLOSE, time)
|
---|
364 |
|
---|
365 | PR_VALUE_SMBOPENX,
|
---|
366 | #define SMBopenX_count __profile_stats_value(PR_VALUE_SMBOPENX, count)
|
---|
367 | #define SMBopenX_time __profile_stats_value(PR_VALUE_SMBOPENX, time)
|
---|
368 |
|
---|
369 | PR_VALUE_SMBREADX,
|
---|
370 | #define SMBreadX_count __profile_stats_value(PR_VALUE_SMBREADX, count)
|
---|
371 | #define SMBreadX_time __profile_stats_value(PR_VALUE_SMBREADX, time)
|
---|
372 |
|
---|
373 | PR_VALUE_SMBWRITEX,
|
---|
374 | #define SMBwriteX_count __profile_stats_value(PR_VALUE_SMBWRITEX, count)
|
---|
375 | #define SMBwriteX_time __profile_stats_value(PR_VALUE_SMBWRITEX, time)
|
---|
376 |
|
---|
377 | PR_VALUE_SMBTRANS2,
|
---|
378 | #define SMBtrans2_count __profile_stats_value(PR_VALUE_SMBTRANS2, count)
|
---|
379 | #define SMBtrans2_time __profile_stats_value(PR_VALUE_SMBTRANS2, time)
|
---|
380 |
|
---|
381 | PR_VALUE_SMBTRANSS2,
|
---|
382 | #define SMBtranss2_count __profile_stats_value(PR_VALUE_SMBTRANSS2, count)
|
---|
383 | #define SMBtranss2_time __profile_stats_value(PR_VALUE_SMBTRANSS2, time)
|
---|
384 |
|
---|
385 | PR_VALUE_SMBFINDCLOSE,
|
---|
386 | #define SMBfindclose_count __profile_stats_value(PR_VALUE_SMBFINDCLOSE, count)
|
---|
387 | #define SMBfindclose_time __profile_stats_value(PR_VALUE_SMBFINDCLOSE, time)
|
---|
388 |
|
---|
389 | PR_VALUE_SMBFINDNCLOSE,
|
---|
390 | #define SMBfindnclose_count __profile_stats_value(PR_VALUE_SMBFINDNCLOSE, count)
|
---|
391 | #define SMBfindnclose_time __profile_stats_value(PR_VALUE_SMBFINDNCLOSE, time)
|
---|
392 |
|
---|
393 | PR_VALUE_SMBTCON,
|
---|
394 | #define SMBtcon_count __profile_stats_value(PR_VALUE_SMBTCON, count)
|
---|
395 | #define SMBtcon_time __profile_stats_value(PR_VALUE_SMBTCON, time)
|
---|
396 |
|
---|
397 | PR_VALUE_SMBTDIS,
|
---|
398 | #define SMBtdis_count __profile_stats_value(PR_VALUE_SMBTDIS, count)
|
---|
399 | #define SMBtdis_time __profile_stats_value(PR_VALUE_SMBTDIS, time)
|
---|
400 |
|
---|
401 | PR_VALUE_SMBNEGPROT,
|
---|
402 | #define SMBnegprot_count __profile_stats_value(PR_VALUE_SMBNEGPROT, count)
|
---|
403 | #define SMBnegprot_time __profile_stats_value(PR_VALUE_SMBNEGPROT, time)
|
---|
404 |
|
---|
405 | PR_VALUE_SMBSESSSETUPX,
|
---|
406 | #define SMBsesssetupX_count __profile_stats_value(PR_VALUE_SMBSESSSETUPX, count)
|
---|
407 | #define SMBsesssetupX_time __profile_stats_value(PR_VALUE_SMBSESSSETUPX, time)
|
---|
408 |
|
---|
409 | PR_VALUE_SMBULOGOFFX,
|
---|
410 | #define SMBulogoffX_count __profile_stats_value(PR_VALUE_SMBULOGOFFX, count)
|
---|
411 | #define SMBulogoffX_time __profile_stats_value(PR_VALUE_SMBULOGOFFX, time)
|
---|
412 |
|
---|
413 | PR_VALUE_SMBTCONX,
|
---|
414 | #define SMBtconX_count __profile_stats_value(PR_VALUE_SMBTCONX, count)
|
---|
415 | #define SMBtconX_time __profile_stats_value(PR_VALUE_SMBTCONX, time)
|
---|
416 |
|
---|
417 | PR_VALUE_SMBDSKATTR,
|
---|
418 | #define SMBdskattr_count __profile_stats_value(PR_VALUE_SMBDSKATTR, count)
|
---|
419 | #define SMBdskattr_time __profile_stats_value(PR_VALUE_SMBDSKATTR, time)
|
---|
420 |
|
---|
421 | PR_VALUE_SMBSEARCH,
|
---|
422 | #define SMBsearch_count __profile_stats_value(PR_VALUE_SMBSEARCH, count)
|
---|
423 | #define SMBsearch_time __profile_stats_value(PR_VALUE_SMBSEARCH, time)
|
---|
424 |
|
---|
425 | /* SBMffirst stats combined with SMBsearch */
|
---|
426 | PR_VALUE_SMBFFIRST,
|
---|
427 | #define SMBffirst_count __profile_stats_value(PR_VALUE_SMBFFIRST, count)
|
---|
428 | #define SMBffirst_time __profile_stats_value(PR_VALUE_SMBFFIRST, time)
|
---|
429 |
|
---|
430 | /* SBMfunique stats combined with SMBsearch */
|
---|
431 | PR_VALUE_SMBFUNIQUE,
|
---|
432 | #define SMBfunique_count __profile_stats_value(PR_VALUE_SMBFUNIQUE, count)
|
---|
433 | #define SMBfunique_time __profile_stats_value(PR_VALUE_SMBFUNIQUE, time)
|
---|
434 |
|
---|
435 | PR_VALUE_SMBFCLOSE,
|
---|
436 | #define SMBfclose_count __profile_stats_value(PR_VALUE_SMBFCLOSE, count)
|
---|
437 | #define SMBfclose_time __profile_stats_value(PR_VALUE_SMBFCLOSE, time)
|
---|
438 |
|
---|
439 | PR_VALUE_SMBNTTRANS,
|
---|
440 | #define SMBnttrans_count __profile_stats_value(PR_VALUE_SMBNTTRANS, count)
|
---|
441 | #define SMBnttrans_time __profile_stats_value(PR_VALUE_SMBNTTRANS, time)
|
---|
442 |
|
---|
443 | PR_VALUE_SMBNTTRANSS,
|
---|
444 | #define SMBnttranss_count __profile_stats_value(PR_VALUE_SMBNTTRANSS, count)
|
---|
445 | #define SMBnttranss_time __profile_stats_value(PR_VALUE_SMBNTTRANSS, time)
|
---|
446 |
|
---|
447 | PR_VALUE_SMBNTCREATEX,
|
---|
448 | #define SMBntcreateX_count __profile_stats_value(PR_VALUE_SMBNTCREATEX, count)
|
---|
449 | #define SMBntcreateX_time __profile_stats_value(PR_VALUE_SMBNTCREATEX, time)
|
---|
450 |
|
---|
451 | PR_VALUE_SMBNTCANCEL,
|
---|
452 | #define SMBntcancel_count __profile_stats_value(PR_VALUE_SMBNTCANCEL, count)
|
---|
453 | #define SMBntcancel_time __profile_stats_value(PR_VALUE_SMBNTCANCEL, time)
|
---|
454 |
|
---|
455 | PR_VALUE_SMBNTRENAME,
|
---|
456 | #define SMBntrename_count __profile_stats_value(PR_VALUE_SMBNTRENAME, count)
|
---|
457 | #define SMBntrename_time __profile_stats_value(PR_VALUE_SMBNTRENAME, time)
|
---|
458 |
|
---|
459 | PR_VALUE_SMBSPLOPEN,
|
---|
460 | #define SMBsplopen_count __profile_stats_value(PR_VALUE_SMBSPLOPEN, count)
|
---|
461 | #define SMBsplopen_time __profile_stats_value(PR_VALUE_SMBSPLOPEN, time)
|
---|
462 |
|
---|
463 | PR_VALUE_SMBSPLWR,
|
---|
464 | #define SMBsplwr_count __profile_stats_value(PR_VALUE_SMBSPLWR, count)
|
---|
465 | #define SMBsplwr_time __profile_stats_value(PR_VALUE_SMBSPLWR, time)
|
---|
466 |
|
---|
467 | PR_VALUE_SMBSPLCLOSE,
|
---|
468 | #define SMBsplclose_count __profile_stats_value(PR_VALUE_SMBSPLCLOSE, count)
|
---|
469 | #define SMBsplclose_time __profile_stats_value(PR_VALUE_SMBSPLCLOSE, time)
|
---|
470 |
|
---|
471 | PR_VALUE_SMBSPLRETQ,
|
---|
472 | #define SMBsplretq_count __profile_stats_value(PR_VALUE_SMBSPLRETQ, count)
|
---|
473 | #define SMBsplretq_time __profile_stats_value(PR_VALUE_SMBSPLRETQ, time)
|
---|
474 |
|
---|
475 | PR_VALUE_SMBSENDS,
|
---|
476 | #define SMBsends_count __profile_stats_value(PR_VALUE_SMBSENDS, count)
|
---|
477 | #define SMBsends_time __profile_stats_value(PR_VALUE_SMBSENDS, time)
|
---|
478 |
|
---|
479 | PR_VALUE_SMBSENDB,
|
---|
480 | #define SMBsendb_count __profile_stats_value(PR_VALUE_SMBSENDB, count)
|
---|
481 | #define SMBsendb_time __profile_stats_value(PR_VALUE_SMBSENDB, time)
|
---|
482 |
|
---|
483 | PR_VALUE_SMBFWDNAME,
|
---|
484 | #define SMBfwdname_count __profile_stats_value(PR_VALUE_SMBFWDNAME, count)
|
---|
485 | #define SMBfwdname_time __profile_stats_value(PR_VALUE_SMBFWDNAME, time)
|
---|
486 |
|
---|
487 | PR_VALUE_SMBCANCELF,
|
---|
488 | #define SMBcancelf_count __profile_stats_value(PR_VALUE_SMBCANCELF, count)
|
---|
489 | #define SMBcancelf_time __profile_stats_value(PR_VALUE_SMBCANCELF, time)
|
---|
490 |
|
---|
491 | PR_VALUE_SMBGETMAC,
|
---|
492 | #define SMBgetmac_count __profile_stats_value(PR_VALUE_SMBGETMAC, count)
|
---|
493 | #define SMBgetmac_time __profile_stats_value(PR_VALUE_SMBGETMAC, time)
|
---|
494 |
|
---|
495 | PR_VALUE_SMBSENDSTRT,
|
---|
496 | #define SMBsendstrt_count __profile_stats_value(PR_VALUE_SMBSENDSTRT, count)
|
---|
497 | #define SMBsendstrt_time __profile_stats_value(PR_VALUE_SMBSENDSTRT, time)
|
---|
498 |
|
---|
499 | PR_VALUE_SMBSENDEND,
|
---|
500 | #define SMBsendend_count __profile_stats_value(PR_VALUE_SMBSENDEND, count)
|
---|
501 | #define SMBsendend_time __profile_stats_value(PR_VALUE_SMBSENDEND, time)
|
---|
502 |
|
---|
503 | PR_VALUE_SMBSENDTXT,
|
---|
504 | #define SMBsendtxt_count __profile_stats_value(PR_VALUE_SMBSENDTXT, count)
|
---|
505 | #define SMBsendtxt_time __profile_stats_value(PR_VALUE_SMBSENDTXT, time)
|
---|
506 |
|
---|
507 | PR_VALUE_SMBINVALID,
|
---|
508 | #define SMBinvalid_count __profile_stats_value(PR_VALUE_SMBINVALID, count)
|
---|
509 | #define SMBinvalid_time __profile_stats_value(PR_VALUE_SMBINVALID, time)
|
---|
510 |
|
---|
511 | /* Pathworks setdir command */
|
---|
512 | PR_VALUE_PATHWORKS_SETDIR,
|
---|
513 | #define pathworks_setdir_count __profile_stats_value(PR_VALUE_PATHWORKS_SETDIR, count)
|
---|
514 | #define pathworks_setdir_time __profile_stats_value(PR_VALUE_PATHWORKS_SETDIR, time)
|
---|
515 |
|
---|
516 | /* These are the TRANS2 sub commands */
|
---|
517 | PR_VALUE_TRANS2_OPEN,
|
---|
518 | #define Trans2_open_count __profile_stats_value(PR_VALUE_TRANS2_OPEN, count)
|
---|
519 | #define Trans2_open_time __profile_stats_value(PR_VALUE_TRANS2_OPEN, time)
|
---|
520 |
|
---|
521 | PR_VALUE_TRANS2_FINDFIRST,
|
---|
522 | #define Trans2_findfirst_count __profile_stats_value(PR_VALUE_TRANS2_FINDFIRST, count)
|
---|
523 | #define Trans2_findfirst_time __profile_stats_value(PR_VALUE_TRANS2_FINDFIRST, time)
|
---|
524 |
|
---|
525 | PR_VALUE_TRANS2_FINDNEXT,
|
---|
526 | #define Trans2_findnext_count __profile_stats_value(PR_VALUE_TRANS2_FINDNEXT, count)
|
---|
527 | #define Trans2_findnext_time __profile_stats_value(PR_VALUE_TRANS2_FINDNEXT, time)
|
---|
528 |
|
---|
529 | PR_VALUE_TRANS2_QFSINFO,
|
---|
530 | #define Trans2_qfsinfo_count __profile_stats_value(PR_VALUE_TRANS2_QFSINFO, count)
|
---|
531 | #define Trans2_qfsinfo_time __profile_stats_value(PR_VALUE_TRANS2_QFSINFO, time)
|
---|
532 |
|
---|
533 | PR_VALUE_TRANS2_SETFSINFO,
|
---|
534 | #define Trans2_setfsinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETFSINFO, count)
|
---|
535 | #define Trans2_setfsinfo_time __profile_stats_value(PR_VALUE_TRANS2_SETFSINFO, time)
|
---|
536 |
|
---|
537 | PR_VALUE_TRANS2_QPATHINFO,
|
---|
538 | #define Trans2_qpathinfo_count __profile_stats_value(PR_VALUE_TRANS2_QPATHINFO, count)
|
---|
539 | #define Trans2_qpathinfo_time __profile_stats_value(PR_VALUE_TRANS2_QPATHINFO, time)
|
---|
540 |
|
---|
541 | PR_VALUE_TRANS2_SETPATHINFO,
|
---|
542 | #define Trans2_setpathinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETPATHINFO, count)
|
---|
543 | #define Trans2_setpathinfo_time __profile_stats_value(PR_VALUE_TRANS2_SETPATHINFO, time)
|
---|
544 |
|
---|
545 | PR_VALUE_TRANS2_QFILEINFO,
|
---|
546 | #define Trans2_qfileinfo_count __profile_stats_value(PR_VALUE_TRANS2_QFILEINFO, count)
|
---|
547 | #define Trans2_qfileinfo_time __profile_stats_value(PR_VALUE_TRANS2_QFILEINFO, time)
|
---|
548 |
|
---|
549 | PR_VALUE_TRANS2_SETFILEINFO,
|
---|
550 | #define Trans2_setfileinfo_count __profile_stats_value(PR_VALUE_TRANS2_SETFILEINFO, count)
|
---|
551 | #define Trans2_setfileinfo_time __profile_stats_value(PR_VALUE_TRANS2_SETFILEINFO, time)
|
---|
552 |
|
---|
553 | PR_VALUE_TRANS2_FSCTL,
|
---|
554 | #define Trans2_fsctl_count __profile_stats_value(PR_VALUE_TRANS2_FSCTL, count)
|
---|
555 | #define Trans2_fsctl_time __profile_stats_value(PR_VALUE_TRANS2_FSCTL, time)
|
---|
556 |
|
---|
557 | PR_VALUE_TRANS2_IOCTL,
|
---|
558 | #define Trans2_ioctl_count __profile_stats_value(PR_VALUE_TRANS2_IOCTL, count)
|
---|
559 | #define Trans2_ioctl_time __profile_stats_value(PR_VALUE_TRANS2_IOCTL, time)
|
---|
560 |
|
---|
561 | PR_VALUE_TRANS2_FINDNOTIFYFIRST,
|
---|
562 | #define Trans2_findnotifyfirst_count __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYFIRST, count)
|
---|
563 | #define Trans2_findnotifyfirst_time __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYFIRST, time)
|
---|
564 |
|
---|
565 | PR_VALUE_TRANS2_FINDNOTIFYNEXT,
|
---|
566 | #define Trans2_findnotifynext_count __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYNEXT, count)
|
---|
567 | #define Trans2_findnotifynext_time __profile_stats_value(PR_VALUE_TRANS2_FINDNOTIFYNEXT, time)
|
---|
568 |
|
---|
569 | PR_VALUE_TRANS2_MKDIR,
|
---|
570 | #define Trans2_mkdir_count __profile_stats_value(PR_VALUE_TRANS2_MKDIR, count)
|
---|
571 | #define Trans2_mkdir_time __profile_stats_value(PR_VALUE_TRANS2_MKDIR, time)
|
---|
572 |
|
---|
573 | PR_VALUE_TRANS2_SESSION_SETUP,
|
---|
574 | #define Trans2_session_setup_count __profile_stats_value(PR_VALUE_TRANS2_SESSION_SETUP, count)
|
---|
575 | #define Trans2_session_setup_time __profile_stats_value(PR_VALUE_TRANS2_SESSION_SETUP, time)
|
---|
576 |
|
---|
577 | PR_VALUE_TRANS2_GET_DFS_REFERRAL,
|
---|
578 | #define Trans2_get_dfs_referral_count __profile_stats_value(PR_VALUE_TRANS2_GET_DFS_REFERRAL, count)
|
---|
579 | #define Trans2_get_dfs_referral_time __profile_stats_value(PR_VALUE_TRANS2_GET_DFS_REFERRAL, time)
|
---|
580 |
|
---|
581 | PR_VALUE_TRANS2_REPORT_DFS_INCONSISTANCY,
|
---|
582 | #define Trans2_report_dfs_inconsistancy_count __profile_stats_value(PR_VALUE_TRANS2_REPORT_DFS_INCONSISTANCY, count)
|
---|
583 | #define Trans2_report_dfs_inconsistancy_time __profile_stats_value(PR_VALUE_TRANS2_REPORT_DFS_INCONSISTANCY, time)
|
---|
584 |
|
---|
585 | /* These are the NT transact sub commands. */
|
---|
586 | PR_VALUE_NT_TRANSACT_CREATE,
|
---|
587 | #define NT_transact_create_count __profile_stats_value(PR_VALUE_NT_TRANSACT_CREATE, count)
|
---|
588 | #define NT_transact_create_time __profile_stats_value(PR_VALUE_NT_TRANSACT_CREATE, time)
|
---|
589 |
|
---|
590 | PR_VALUE_NT_TRANSACT_IOCTL,
|
---|
591 | #define NT_transact_ioctl_count __profile_stats_value(PR_VALUE_NT_TRANSACT_IOCTL, count)
|
---|
592 | #define NT_transact_ioctl_time __profile_stats_value(PR_VALUE_NT_TRANSACT_IOCTL, time)
|
---|
593 |
|
---|
594 | PR_VALUE_NT_TRANSACT_SET_SECURITY_DESC,
|
---|
595 | #define NT_transact_set_security_desc_count __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_SECURITY_DESC, count)
|
---|
596 | #define NT_transact_set_security_desc_time __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_SECURITY_DESC, time)
|
---|
597 |
|
---|
598 | PR_VALUE_NT_TRANSACT_NOTIFY_CHANGE,
|
---|
599 | #define NT_transact_notify_change_count __profile_stats_value(PR_VALUE_NT_TRANSACT_NOTIFY_CHANGE, count)
|
---|
600 | #define NT_transact_notify_change_time __profile_stats_value(PR_VALUE_NT_TRANSACT_NOTIFY_CHANGE, time)
|
---|
601 |
|
---|
602 | PR_VALUE_NT_TRANSACT_RENAME,
|
---|
603 | #define NT_transact_rename_count __profile_stats_value(PR_VALUE_NT_TRANSACT_RENAME, count)
|
---|
604 | #define NT_transact_rename_time __profile_stats_value(PR_VALUE_NT_TRANSACT_RENAME, time)
|
---|
605 |
|
---|
606 | PR_VALUE_NT_TRANSACT_QUERY_SECURITY_DESC,
|
---|
607 | #define NT_transact_query_security_desc_count __profile_stats_value(PR_VALUE_NT_TRANSACT_QUERY_SECURITY_DESC, count)
|
---|
608 | #define NT_transact_query_security_desc_time __profile_stats_value(PR_VALUE_NT_TRANSACT_QUERY_SECURITY_DESC, time)
|
---|
609 |
|
---|
610 | PR_VALUE_NT_TRANSACT_GET_USER_QUOTA,
|
---|
611 | #define NT_transact_get_user_quota_count __profile_stats_value(PR_VALUE_NT_TRANSACT_GET_USER_QUOTA, count)
|
---|
612 | #define NT_transact_get_user_quota_time __profile_stats_value(PR_VALUE_NT_TRANSACT_GET_USER_QUOTA, time)
|
---|
613 |
|
---|
614 | PR_VALUE_NT_TRANSACT_SET_USER_QUOTA,
|
---|
615 | #define NT_transact_set_user_quota_count __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_USER_QUOTA, count)
|
---|
616 | #define NT_transact_set_user_quota_time __profile_stats_value(PR_VALUE_NT_TRANSACT_SET_USER_QUOTA, time)
|
---|
617 |
|
---|
618 | /* These are ACL manipulation calls */
|
---|
619 | PR_VALUE_GET_NT_ACL,
|
---|
620 | #define get_nt_acl_count __profile_stats_value(PR_VALUE_GET_NT_ACL, count)
|
---|
621 | #define get_nt_acl_time __profile_stats_value(PR_VALUE_GET_NT_ACL, time)
|
---|
622 |
|
---|
623 | PR_VALUE_FGET_NT_ACL,
|
---|
624 | #define fget_nt_acl_count __profile_stats_value(PR_VALUE_FGET_NT_ACL, count)
|
---|
625 | #define fget_nt_acl_time __profile_stats_value(PR_VALUE_FGET_NT_ACL, time)
|
---|
626 |
|
---|
627 | PR_VALUE_SET_NT_ACL,
|
---|
628 | #define set_nt_acl_count __profile_stats_value(PR_VALUE_SET_NT_ACL, count)
|
---|
629 | #define set_nt_acl_time __profile_stats_value(PR_VALUE_SET_NT_ACL, time)
|
---|
630 |
|
---|
631 | PR_VALUE_FSET_NT_ACL,
|
---|
632 | #define fset_nt_acl_count __profile_stats_value(PR_VALUE_FSET_NT_ACL, count)
|
---|
633 | #define fset_nt_acl_time __profile_stats_value(PR_VALUE_FSET_NT_ACL, time)
|
---|
634 |
|
---|
635 | PR_VALUE_CHMOD_ACL,
|
---|
636 | #define chmod_acl_count __profile_stats_value(PR_VALUE_CHMOD_ACL, count)
|
---|
637 | #define chmod_acl_time __profile_stats_value(PR_VALUE_CHMOD_ACL, time)
|
---|
638 |
|
---|
639 | PR_VALUE_FCHMOD_ACL,
|
---|
640 | #define fchmod_acl_count __profile_stats_value(PR_VALUE_FCHMOD_ACL, count)
|
---|
641 | #define fchmod_acl_time __profile_stats_value(PR_VALUE_FCHMOD_ACL, time)
|
---|
642 |
|
---|
643 | /* These are nmbd stats */
|
---|
644 | PR_VALUE_NAME_RELEASE,
|
---|
645 | #define name_release_count __profile_stats_value(PR_VALUE_NAME_RELEASE, count)
|
---|
646 | #define name_release_time __profile_stats_value(PR_VALUE_NAME_RELEASE, time)
|
---|
647 |
|
---|
648 | PR_VALUE_NAME_REFRESH,
|
---|
649 | #define name_refresh_count __profile_stats_value(PR_VALUE_NAME_REFRESH, count)
|
---|
650 | #define name_refresh_time __profile_stats_value(PR_VALUE_NAME_REFRESH, time)
|
---|
651 |
|
---|
652 | PR_VALUE_NAME_REGISTRATION,
|
---|
653 | #define name_registration_count __profile_stats_value(PR_VALUE_NAME_REGISTRATION, count)
|
---|
654 | #define name_registration_time __profile_stats_value(PR_VALUE_NAME_REGISTRATION, time)
|
---|
655 |
|
---|
656 | PR_VALUE_NODE_STATUS,
|
---|
657 | #define node_status_count __profile_stats_value(PR_VALUE_NODE_STATUS, count)
|
---|
658 | #define node_status_time __profile_stats_value(PR_VALUE_NODE_STATUS, time)
|
---|
659 |
|
---|
660 | PR_VALUE_NAME_QUERY,
|
---|
661 | #define name_query_count __profile_stats_value(PR_VALUE_NAME_QUERY, count)
|
---|
662 | #define name_query_time __profile_stats_value(PR_VALUE_NAME_QUERY, time)
|
---|
663 |
|
---|
664 | PR_VALUE_HOST_ANNOUNCE,
|
---|
665 | #define host_announce_count __profile_stats_value(PR_VALUE_HOST_ANNOUNCE, count)
|
---|
666 | #define host_announce_time __profile_stats_value(PR_VALUE_HOST_ANNOUNCE, time)
|
---|
667 |
|
---|
668 | PR_VALUE_WORKGROUP_ANNOUNCE,
|
---|
669 | #define workgroup_announce_count __profile_stats_value(PR_VALUE_WORKGROUP_ANNOUNCE, count)
|
---|
670 | #define workgroup_announce_time __profile_stats_value(PR_VALUE_WORKGROUP_ANNOUNCE, time)
|
---|
671 |
|
---|
672 | PR_VALUE_LOCAL_MASTER_ANNOUNCE,
|
---|
673 | #define local_master_announce_count __profile_stats_value(PR_VALUE_LOCAL_MASTER_ANNOUNCE, count)
|
---|
674 | #define local_master_announce_time __profile_stats_value(PR_VALUE_LOCAL_MASTER_ANNOUNCE, time)
|
---|
675 |
|
---|
676 | PR_VALUE_MASTER_BROWSER_ANNOUNCE,
|
---|
677 | #define master_browser_announce_count __profile_stats_value(PR_VALUE_MASTER_BROWSER_ANNOUNCE, count)
|
---|
678 | #define master_browser_announce_time __profile_stats_value(PR_VALUE_MASTER_BROWSER_ANNOUNCE, time)
|
---|
679 |
|
---|
680 | PR_VALUE_LM_HOST_ANNOUNCE,
|
---|
681 | #define lm_host_announce_count __profile_stats_value(PR_VALUE_LM_HOST_ANNOUNCE, count)
|
---|
682 | #define lm_host_announce_time __profile_stats_value(PR_VALUE_LM_HOST_ANNOUNCE, time)
|
---|
683 |
|
---|
684 | PR_VALUE_GET_BACKUP_LIST,
|
---|
685 | #define get_backup_list_count __profile_stats_value(PR_VALUE_GET_BACKUP_LIST, count)
|
---|
686 | #define get_backup_list_time __profile_stats_value(PR_VALUE_GET_BACKUP_LIST, time)
|
---|
687 |
|
---|
688 | PR_VALUE_RESET_BROWSER,
|
---|
689 | #define reset_browser_count __profile_stats_value(PR_VALUE_RESET_BROWSER, count)
|
---|
690 | #define reset_browser_time __profile_stats_value(PR_VALUE_RESET_BROWSER, time)
|
---|
691 |
|
---|
692 | PR_VALUE_ANNOUNCE_REQUEST,
|
---|
693 | #define announce_request_count __profile_stats_value(PR_VALUE_ANNOUNCE_REQUEST, count)
|
---|
694 | #define announce_request_time __profile_stats_value(PR_VALUE_ANNOUNCE_REQUEST, time)
|
---|
695 |
|
---|
696 | PR_VALUE_LM_ANNOUNCE_REQUEST,
|
---|
697 | #define lm_announce_request_count __profile_stats_value(PR_VALUE_LM_ANNOUNCE_REQUEST, count)
|
---|
698 | #define lm_announce_request_time __profile_stats_value(PR_VALUE_LM_ANNOUNCE_REQUEST, time)
|
---|
699 |
|
---|
700 | PR_VALUE_DOMAIN_LOGON,
|
---|
701 | #define domain_logon_count __profile_stats_value(PR_VALUE_DOMAIN_LOGON, count)
|
---|
702 | #define domain_logon_time __profile_stats_value(PR_VALUE_DOMAIN_LOGON, time)
|
---|
703 |
|
---|
704 | PR_VALUE_SYNC_BROWSE_LISTS,
|
---|
705 | #define sync_browse_lists_count __profile_stats_value(PR_VALUE_SYNC_BROWSE_LISTS, count)
|
---|
706 | #define sync_browse_lists_time __profile_stats_value(PR_VALUE_SYNC_BROWSE_LISTS, time)
|
---|
707 |
|
---|
708 | PR_VALUE_RUN_ELECTIONS,
|
---|
709 | #define run_elections_count __profile_stats_value(PR_VALUE_RUN_ELECTIONS, count)
|
---|
710 | #define run_elections_time __profile_stats_value(PR_VALUE_RUN_ELECTIONS, time)
|
---|
711 |
|
---|
712 | PR_VALUE_ELECTION,
|
---|
713 | #define election_count __profile_stats_value(PR_VALUE_ELECTION, count)
|
---|
714 | #define election_time __profile_stats_value(PR_VALUE_ELECTION, time)
|
---|
715 |
|
---|
716 | /* This mist remain the last value. */
|
---|
717 | PR_VALUE_MAX
|
---|
718 | }; /* enum profile_stats_values */
|
---|
719 |
|
---|
720 | const char * profile_value_name(enum profile_stats_values val);
|
---|
721 |
|
---|
722 | struct profile_stats {
|
---|
723 | /* general counters */
|
---|
724 | unsigned smb_count; /* how many SMB packets we have processed */
|
---|
725 | unsigned uid_changes; /* how many times we change our effective uid */
|
---|
726 |
|
---|
727 | /* system call and protocol operation counters and cumulative times */
|
---|
728 | unsigned count[PR_VALUE_MAX];
|
---|
729 | unsigned time[PR_VALUE_MAX];
|
---|
730 |
|
---|
731 | /* cumulative byte counts */
|
---|
732 | unsigned syscall_pread_bytes;
|
---|
733 | unsigned syscall_pwrite_bytes;
|
---|
734 | unsigned syscall_read_bytes;
|
---|
735 | unsigned syscall_write_bytes;
|
---|
736 | unsigned syscall_sendfile_bytes;
|
---|
737 |
|
---|
738 | /* stat cache counters */
|
---|
739 | unsigned statcache_lookups;
|
---|
740 | unsigned statcache_misses;
|
---|
741 | unsigned statcache_hits;
|
---|
742 |
|
---|
743 | /* write cache counters */
|
---|
744 | unsigned writecache_read_hits;
|
---|
745 | unsigned writecache_abutted_writes;
|
---|
746 | unsigned writecache_total_writes;
|
---|
747 | unsigned writecache_non_oplock_writes;
|
---|
748 | unsigned writecache_direct_writes;
|
---|
749 | unsigned writecache_init_writes;
|
---|
750 | unsigned writecache_flushed_writes[NUM_FLUSH_REASONS];
|
---|
751 | unsigned writecache_num_perfect_writes;
|
---|
752 | unsigned writecache_num_write_caches;
|
---|
753 | unsigned writecache_allocated_write_caches;
|
---|
754 | };
|
---|
755 |
|
---|
756 | struct profile_header {
|
---|
757 | int prof_shm_magic;
|
---|
758 | int prof_shm_version;
|
---|
759 | struct profile_stats stats;
|
---|
760 | };
|
---|
761 |
|
---|
762 | extern struct profile_header *profile_h;
|
---|
763 | extern struct profile_stats *profile_p;
|
---|
764 | extern BOOL do_profile_flag;
|
---|
765 | extern BOOL do_profile_times;
|
---|
766 |
|
---|
767 | #ifdef WITH_PROFILE
|
---|
768 |
|
---|
769 | /* these are helper macros - do not call them directly in the code
|
---|
770 | * use the DO_PROFILE_* START_PROFILE and END_PROFILE ones
|
---|
771 | * below which test for the profile flage first
|
---|
772 | */
|
---|
773 | #define INC_PROFILE_COUNT(x) profile_p->x++
|
---|
774 | #define DEC_PROFILE_COUNT(x) profile_p->x--
|
---|
775 | #define ADD_PROFILE_COUNT(x,y) profile_p->x += (y)
|
---|
776 |
|
---|
777 | #if defined(HAVE_CLOCK_GETTIME)
|
---|
778 |
|
---|
779 | extern clockid_t __profile_clock;
|
---|
780 |
|
---|
781 | static inline SMB_BIG_UINT profile_timestamp(void)
|
---|
782 | {
|
---|
783 | struct timespec ts;
|
---|
784 |
|
---|
785 | /* FIXME: On a single-CPU system, or a system where we have bound
|
---|
786 | * daemon threads to single CPUs (eg. using cpusets or processor
|
---|
787 | * affinity), it might be preferable to use CLOCK_PROCESS_CPUTIME_ID.
|
---|
788 | */
|
---|
789 |
|
---|
790 | clock_gettime(__profile_clock, &ts);
|
---|
791 | return (ts.tv_sec * 1000000) + (ts.tv_nsec / 1000); /* usec */
|
---|
792 | }
|
---|
793 |
|
---|
794 | #else
|
---|
795 |
|
---|
796 | static inline SMB_BIG_UINT profile_timestamp(void)
|
---|
797 | {
|
---|
798 | struct timeval tv;
|
---|
799 | GetTimeOfDay(&tv);
|
---|
800 | return (tv.tv_sec * 1000000) + tv.tv_usec;
|
---|
801 | }
|
---|
802 |
|
---|
803 | #endif
|
---|
804 |
|
---|
805 | /* end of helper macros */
|
---|
806 |
|
---|
807 | #define DO_PROFILE_INC(x) \
|
---|
808 | if (do_profile_flag) { \
|
---|
809 | INC_PROFILE_COUNT(x); \
|
---|
810 | }
|
---|
811 |
|
---|
812 | #define DO_PROFILE_DEC(x) \
|
---|
813 | if (do_profile_flag) { \
|
---|
814 | DEC_PROFILE_COUNT(x); \
|
---|
815 | }
|
---|
816 |
|
---|
817 | #define DO_PROFILE_DEC_INC(x,y) \
|
---|
818 | if (do_profile_flag) { \
|
---|
819 | DEC_PROFILE_COUNT(x); \
|
---|
820 | INC_PROFILE_COUNT(y); \
|
---|
821 | }
|
---|
822 |
|
---|
823 | #define DO_PROFILE_ADD(x,n) \
|
---|
824 | if (do_profile_flag) { \
|
---|
825 | ADD_PROFILE_COUNT(x,n); \
|
---|
826 | }
|
---|
827 |
|
---|
828 | #define START_PROFILE(x) \
|
---|
829 | SMB_BIG_UINT __profstamp_##x = 0; \
|
---|
830 | if (do_profile_flag) { \
|
---|
831 | __profstamp_##x = do_profile_times ? profile_timestamp() : 0;\
|
---|
832 | INC_PROFILE_COUNT(x##_count); \
|
---|
833 | }
|
---|
834 |
|
---|
835 | #define START_PROFILE_BYTES(x,n) \
|
---|
836 | SMB_BIG_UINT __profstamp_##x = 0; \
|
---|
837 | if (do_profile_flag) { \
|
---|
838 | __profstamp_##x = do_profile_times ? profile_timestamp() : 0;\
|
---|
839 | INC_PROFILE_COUNT(x##_count); \
|
---|
840 | ADD_PROFILE_COUNT(x##_bytes, n); \
|
---|
841 | }
|
---|
842 |
|
---|
843 | #define END_PROFILE(x) \
|
---|
844 | if (do_profile_times) { \
|
---|
845 | ADD_PROFILE_COUNT(x##_time, \
|
---|
846 | profile_timestamp() - __profstamp_##x); \
|
---|
847 | }
|
---|
848 |
|
---|
849 |
|
---|
850 | #else /* WITH_PROFILE */
|
---|
851 |
|
---|
852 | #define DO_PROFILE_INC(x)
|
---|
853 | #define DO_PROFILE_DEC(x)
|
---|
854 | #define DO_PROFILE_DEC_INC(x,y)
|
---|
855 | #define DO_PROFILE_ADD(x,n)
|
---|
856 | #define START_PROFILE(x)
|
---|
857 | #define START_PROFILE_BYTES(x,n)
|
---|
858 | #define END_PROFILE(x)
|
---|
859 |
|
---|
860 | #endif /* WITH_PROFILE */
|
---|
861 |
|
---|
862 | #endif
|
---|