Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/os/
H A Dsleepq.c197 kthread_t **ptl; in sleepq_dequeue() local
202 ptl = &t->t_priback->t_link; in sleepq_dequeue()
207 if (*ptl != t) { in sleepq_dequeue()
211 ptl = &t->t_sleepq->sq_first; in sleepq_dequeue()
212 while ((nt = *ptl) != t) in sleepq_dequeue()
213 ptl = &nt->t_priback->t_link; in sleepq_dequeue()
215 sleepq_unlink(ptl, t); in sleepq_dequeue()
H A Dwaitq.c157 kthread_t **ptl; in waitq_unlink() local
163 ptl = &t->t_priback->t_link; in waitq_unlink()
168 if (*ptl != t) { in waitq_unlink()
172 ptl = &t->t_waitq->wq_first; in waitq_unlink()
173 while ((nt = *ptl) != t) in waitq_unlink()
174 ptl = &nt->t_priback->t_link; in waitq_unlink()
179 *ptl = t->t_link; in waitq_unlink()
/titanic_44/usr/src/cmd/fs.d/nfs/nfslog/
H A Ddbtab.c1818 } thelist, *ptl; in prune_dbs() local
1853 ptl = malloc(sizeof (struct thelist)); in prune_dbs()
1854 if (ptl == NULL) { in prune_dbs()
1860 ptl->ptr = ptr; in prune_dbs()
1861 ptl->next = thelist.next; in prune_dbs()
1862 thelist.next = ptl; in prune_dbs()
1878 for (ptl = thelist.next; ptl; ptl = thelist.next) { in prune_dbs()
1879 thelist.next = ptl->next; in prune_dbs()
1881 pfe = &(ptl->ptr->fhlist_rec); in prune_dbs()
1923 free(ptl->ptr); in prune_dbs()
[all …]
/titanic_44/usr/src/cmd/itadm/
H A Ditadm.c1310 it_portal_t *ptl; in create_tpg() local
1397 ret = it_portal_create(cfg, tpgp, &ptl, addrs[count]); in create_tpg()