Home
last modified time | relevance | path

Searched refs:tspp (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/disp/
H A Dts.c123 #define TS_NEWUMDPRI(tspp) \ argument
126 pri = (tspp)->ts_cpupri + (tspp)->ts_upri + (tspp)->ts_boost; \
128 (tspp)->ts_umdpri = ts_maxumdpri; \
130 (tspp)->ts_umdpri = 0; \
132 (tspp)->ts_umdpri = pri; \
133 ASSERT((tspp)->ts_umdpri >= 0 && (tspp)->ts_umdpri <= ts_maxumdpri); \
156 #define TS_LIST_INSERT(tspp) \ argument
158 int index = TS_LIST_HASH(tspp->ts_tp); \
162 tspp->ts_next = headp->ts_next; \
163 tspp->ts_prev = headp; \
[all …]
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_acl.c1793 si_t **tspp; in si_cache_put() local
1803 tspp = &si_cachea[SI_HASH(sp->s_signature)]; in si_cache_put()
1804 sp->s_next = *tspp; in si_cache_put()
1805 *tspp = sp; in si_cache_put()
1808 tspp = &si_cachei[SI_HASH(sp->s_shadow)]; in si_cache_put()
1809 sp->s_forw = *tspp; in si_cache_put()
1810 *tspp = sp; in si_cache_put()
1834 si_t **tspp; in si_cache_del() local
1845 for (tspp = &si_cachea[hash]; *tspp; tspp = &(*tspp)->s_next) { in si_cache_del()
1846 if (*tspp == sp) { in si_cache_del()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dturnstile.c218 turnstile_t **tspp, *tsp; in turnstile_pi_tsdelete() local
222 tspp = &inheritor->t_prioinv; in turnstile_pi_tsdelete()
223 while ((tsp = *tspp) != NULL) { in turnstile_pi_tsdelete()
225 *tspp = tsp->ts_prioinv; in turnstile_pi_tsdelete()
228 tspp = &tsp->ts_prioinv; in turnstile_pi_tsdelete()
662 turnstile_t *tsfree, **tspp; in turnstile_dequeue() local
700 tspp = &tc->tc_first; in turnstile_dequeue()
701 while (*tspp != ts) in turnstile_dequeue()
702 tspp = &(*tspp)->ts_next; in turnstile_dequeue()
703 *tspp = ts->ts_next; in turnstile_dequeue()
/illumos-gate/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vfsops.c371 struct hsfs **tspp; in hsfs_unmount() local
394 for (tspp = &hs_mounttab; *tspp != NULL; tspp = &(*tspp)->hsfs_next) { in hsfs_unmount()
395 if (*tspp == fsp) in hsfs_unmount()
398 if (*tspp == NULL) { in hsfs_unmount()
404 *tspp = fsp->hsfs_next; in hsfs_unmount()