Home
last modified time | relevance | path

Searched defs:sfstat (Results 1 – 4 of 4) sorted by relevance

/f-stack/tools/compat/include/sys/
H A Dsf_buf.h35 struct sfstat { /* sendfile statistics */ struct
36 uint64_t sf_syscalls; /* times sendfile was called */
37 uint64_t sf_noiocnt; /* times sendfile didn't require I/O */
38 uint64_t sf_iocnt; /* times sendfile had to do disk I/O */
39 uint64_t sf_pages_read; /* pages read as part of a request */
40 uint64_t sf_pages_valid; /* pages were valid for a request */
41 uint64_t sf_rhpages_requested; /* readahead pages requested */
42 uint64_t sf_rhpages_read; /* readahead pages read */
43 uint64_t sf_busy; /* times aborted on a busy page */
44 uint64_t sf_allocfail; /* times sfbuf allocation failed */
[all …]
/f-stack/freebsd/sys/
H A Dsf_buf.h35 struct sfstat { /* sendfile statistics */ struct
36 uint64_t sf_syscalls; /* times sendfile was called */
37 uint64_t sf_noiocnt; /* times sendfile didn't require I/O */
38 uint64_t sf_iocnt; /* times sendfile had to do disk I/O */
39 uint64_t sf_pages_read; /* pages read as part of a request */
40 uint64_t sf_pages_valid; /* pages were valid for a request */
41 uint64_t sf_rhpages_requested; /* readahead pages requested */
42 uint64_t sf_rhpages_read; /* readahead pages read */
43 uint64_t sf_busy; /* times aborted on a busy page */
44 uint64_t sf_allocfail; /* times sfbuf allocation failed */
[all …]
/f-stack/tools/netstat/
H A Dmbuf.c95 struct sfstat sfstat; in mbpr() local
/f-stack/freebsd/kern/
H A Dkern_sendfile.c139 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)]; variable