Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dsleepq.c196 kthread_t **ptl; in sleepq_dequeue() local
201 ptl = &t->t_priback->t_link; in sleepq_dequeue()
206 if (*ptl != t) { in sleepq_dequeue()
210 ptl = &t->t_sleepq->sq_first; in sleepq_dequeue()
211 while ((nt = *ptl) != t) in sleepq_dequeue()
212 ptl = &nt->t_priback->t_link; in sleepq_dequeue()
214 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()
/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Ddbtab.c1816 } thelist, *ptl; in prune_dbs() local
1851 ptl = malloc(sizeof (struct thelist)); in prune_dbs()
1852 if (ptl == NULL) { in prune_dbs()
1858 ptl->ptr = ptr; in prune_dbs()
1859 ptl->next = thelist.next; in prune_dbs()
1860 thelist.next = ptl; in prune_dbs()
1876 for (ptl = thelist.next; ptl; ptl = thelist.next) { in prune_dbs()
1877 thelist.next = ptl->next; in prune_dbs()
1879 pfe = &(ptl->ptr->fhlist_rec); in prune_dbs()
1921 free(ptl->ptr); in prune_dbs()
[all …]
/illumos-gate/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()