Home
last modified time | relevance | path

Searched refs:sfstat (Results 1 – 3 of 3) sorted by relevance

/NextBSD/usr.bin/netstat/
HDmbuf.c87 struct sfstat sfstat; in mbpr() local
325 if (fetch_stats("kern.ipc.sfstat", mbaddr, &sfstat, sizeof(sfstat), in mbpr()
330 (uintmax_t)sfstat.sf_syscalls); in mbpr()
333 (uintmax_t)sfstat.sf_noiocnt); in mbpr()
336 (uintmax_t)sfstat.sf_iocnt); in mbpr()
339 (uintmax_t)sfstat.sf_pages_read); in mbpr()
342 (uintmax_t)sfstat.sf_pages_valid); in mbpr()
345 (uintmax_t)sfstat.sf_rhpages_requested); in mbpr()
348 (uintmax_t)sfstat.sf_rhpages_read); in mbpr()
351 (uintmax_t)sfstat.sf_busy); in mbpr()
[all …]
/NextBSD/sys/sys/
HDsf_buf.h33 struct sfstat { /* sendfile statistics */ struct
197 extern counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)];
199 counter_u64_add(sfstat[offsetof(struct sfstat, name) / sizeof(uint64_t)],\
/NextBSD/sys/kern/
HDuipc_syscalls.c114 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)]; variable
120 COUNTER_ARRAY_ALLOC(sfstat, sizeof(struct sfstat) / sizeof(uint64_t), in sfstat_init()
123 SYSINIT(sfstat, SI_SUB_MBUF, SI_ORDER_FIRST, sfstat_init, NULL);
128 struct sfstat s; in sfstat_sysctl()
130 COUNTER_ARRAY_COPY(sfstat, &s, sizeof(s) / sizeof(uint64_t)); in sfstat_sysctl()
132 COUNTER_ARRAY_ZERO(sfstat, sizeof(s) / sizeof(uint64_t)); in sfstat_sysctl()
135 SYSCTL_PROC(_kern_ipc, OID_AUTO, sfstat, CTLTYPE_OPAQUE | CTLFLAG_RW,