Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/disp/
H A Dts.c124 #define TS_NEWUMDPRI(tspp) \ argument
127 pri = (tspp)->ts_cpupri + (tspp)->ts_upri + (tspp)->ts_boost; \
129 (tspp)->ts_umdpri = ts_maxumdpri; \
131 (tspp)->ts_umdpri = 0; \
133 (tspp)->ts_umdpri = pri; \
134 ASSERT((tspp)->ts_umdpri >= 0 && (tspp)->ts_umdpri <= ts_maxumdpri); \
157 #define TS_LIST_INSERT(tspp) \ argument
159 int index = TS_LIST_HASH(tspp->ts_tp); \
163 tspp->ts_next = headp->ts_next; \
164 tspp->ts_prev = headp; \
[all …]
/titanic_50/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()
/titanic_50/usr/src/uts/common/fs/ufs/
H A Dufs_acl.c1799 si_t **tspp; in si_cache_put() local
1809 tspp = &si_cachea[SI_HASH(sp->s_signature)]; in si_cache_put()
1810 sp->s_next = *tspp; in si_cache_put()
1811 *tspp = sp; in si_cache_put()
1814 tspp = &si_cachei[SI_HASH(sp->s_shadow)]; in si_cache_put()
1815 sp->s_forw = *tspp; in si_cache_put()
1816 *tspp = sp; in si_cache_put()
1840 si_t **tspp; in si_cache_del() local
1851 for (tspp = &si_cachea[hash]; *tspp; tspp = &(*tspp)->s_next) { in si_cache_del()
1852 if (*tspp == sp) { in si_cache_del()
[all …]
/titanic_50/usr/src/uts/common/fs/hsfs/
H A Dhsfs_vfsops.c370 struct hsfs **tspp; in hsfs_unmount() local
393 for (tspp = &hs_mounttab; *tspp != NULL; tspp = &(*tspp)->hsfs_next) { in hsfs_unmount()
394 if (*tspp == fsp) in hsfs_unmount()
397 if (*tspp == NULL) { in hsfs_unmount()
403 *tspp = fsp->hsfs_next; in hsfs_unmount()