Searched defs:sfstat (Results 1 – 3 of 3) sorted by relevance
33 struct sfstat { /* sendfile statistics */ struct34 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 …]
79 struct sfstat sfstat; in mbpr() local
140 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)]; variable