Home
last modified time | relevance | path

Searched refs:tqbucket_stat (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dtaskq.c676 #define TQ_STAT(b, x) b->tqbucket_stat.x++
2280 nthreads = b->tqbucket_stat.tqs_tcreates - in taskq_bucket_extend()
2281 b->tqbucket_stat.tqs_tdeaths; in taskq_bucket_extend()
2282 b->tqbucket_stat.tqs_maxthreads = MAX(nthreads, in taskq_bucket_extend()
2283 b->tqbucket_stat.tqs_maxthreads); in taskq_bucket_extend()
2362 tqsp->tqd_hits.value.ui64 += b->tqbucket_stat.tqs_hits; in taskq_d_kstat_update()
2363 tqsp->tqd_misses.value.ui64 += b->tqbucket_stat.tqs_misses; in taskq_d_kstat_update()
2365 tqsp->tqd_tcreates.value.ui64 += b->tqbucket_stat.tqs_tcreates; in taskq_d_kstat_update()
2366 tqsp->tqd_tdeaths.value.ui64 += b->tqbucket_stat.tqs_tdeaths; in taskq_d_kstat_update()
2368 b->tqbucket_stat.tqs_maxthreads; in taskq_d_kstat_update()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dtaskq_impl.h87 tqstat_t tqbucket_stat; member