Home
last modified time | relevance | path

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

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