Symbol: sfstat
sys/kern/kern_sendfile.c
102
counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)];
sys/kern/kern_sendfile.c
108
COUNTER_ARRAY_ALLOC(sfstat, sizeof(struct sfstat) / sizeof(uint64_t),
sys/kern/kern_sendfile.c
111
SYSINIT(sfstat, SI_SUB_MBUF, SI_ORDER_FIRST, sfstat_init, NULL);
sys/kern/kern_sendfile.c
116
struct sfstat s;
sys/kern/kern_sendfile.c
118
COUNTER_ARRAY_COPY(sfstat, &s, sizeof(s) / sizeof(uint64_t));
sys/kern/kern_sendfile.c
120
COUNTER_ARRAY_ZERO(sfstat, sizeof(s) / sizeof(uint64_t));
sys/kern/kern_sendfile.c
123
SYSCTL_PROC(_kern_ipc, OID_AUTO, sfstat,
sys/sys/sf_buf.h
188
extern counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)];
sys/sys/sf_buf.h
190
counter_u64_add(sfstat[offsetof(struct sfstat, name) / sizeof(uint64_t)],\
usr.bin/netstat/mbuf.c
317
if (fetch_stats("kern.ipc.sfstat", mbaddr, &sfstat, sizeof(sfstat),
usr.bin/netstat/mbuf.c
322
(uintmax_t)sfstat.sf_syscalls);
usr.bin/netstat/mbuf.c
325
(uintmax_t)sfstat.sf_noiocnt);
usr.bin/netstat/mbuf.c
328
(uintmax_t)sfstat.sf_iocnt);
usr.bin/netstat/mbuf.c
331
(uintmax_t)sfstat.sf_pages_read);
usr.bin/netstat/mbuf.c
334
(uintmax_t)sfstat.sf_pages_valid);
usr.bin/netstat/mbuf.c
337
(uintmax_t)sfstat.sf_pages_bogus);
usr.bin/netstat/mbuf.c
340
(uintmax_t)sfstat.sf_rhpages_requested);
usr.bin/netstat/mbuf.c
343
(uintmax_t)sfstat.sf_rhpages_read);
usr.bin/netstat/mbuf.c
346
(uintmax_t)sfstat.sf_busy);
usr.bin/netstat/mbuf.c
348
(uintmax_t)sfstat.sf_allocfail);
usr.bin/netstat/mbuf.c
350
(uintmax_t)sfstat.sf_allocwait);
usr.bin/netstat/mbuf.c
79
struct sfstat sfstat;