Searched defs:sfstat (Results 1 – 4 of 4) sorted by relevance
35 struct sfstat { /* sendfile statistics */ struct36 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 …]
95 struct sfstat sfstat; in mbpr() local
139 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)]; variable