Searched refs:ptl (Results 1 – 4 of 4) sorted by relevance
197 kthread_t **ptl; in sleepq_dequeue() local202 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()
157 kthread_t **ptl; in waitq_unlink() local163 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()
1818 } thelist, *ptl; in prune_dbs() local1853 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 …]
1310 it_portal_t *ptl; in create_tpg() local1397 ret = it_portal_create(cfg, tpgp, &ptl, addrs[count]); in create_tpg()