Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/os/
H A Dtaskq.c667 #define TQ_STAT(b, x) b->tqbucket_stat.x++
2222 nthreads = b->tqbucket_stat.tqs_tcreates - in taskq_bucket_extend()
2223 b->tqbucket_stat.tqs_tdeaths; in taskq_bucket_extend()
2224 b->tqbucket_stat.tqs_maxthreads = MAX(nthreads, in taskq_bucket_extend()
2225 b->tqbucket_stat.tqs_maxthreads); in taskq_bucket_extend()
2294 tqsp->tqd_hits.value.ui64 += b->tqbucket_stat.tqs_hits; in taskq_d_kstat_update()
2295 tqsp->tqd_misses.value.ui64 += b->tqbucket_stat.tqs_misses; in taskq_d_kstat_update()
2296 tqsp->tqd_overflows.value.ui64 += b->tqbucket_stat.tqs_overflow; in taskq_d_kstat_update()
2297 tqsp->tqd_tcreates.value.ui64 += b->tqbucket_stat.tqs_tcreates; in taskq_d_kstat_update()
2298 tqsp->tqd_tdeaths.value.ui64 += b->tqbucket_stat.tqs_tdeaths; in taskq_d_kstat_update()
[all …]
/titanic_41/usr/src/uts/common/sys/
H A Dtaskq_impl.h85 tqstat_t tqbucket_stat; member