Home
last modified time | relevance | path

Searched refs:tq_free_list (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-taskq.c117 if (!list_empty(&tq->tq_free_list) && !(flags & TQ_NEW)) { in task_alloc()
118 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list); in task_alloc()
207 list_add_tail(&t->tqent_list, &tq->tq_free_list); in task_done()
1090 INIT_LIST_HEAD(&tq->tq_free_list); in taskq_create()
1203 while (!list_empty(&tq->tq_free_list)) { in taskq_destroy()
1204 t = list_entry(tq->tq_free_list.next, taskq_ent_t, tqent_list); in taskq_destroy()
1217 ASSERT(list_empty(&tq->tq_free_list)); in taskq_destroy()
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dtaskq.h96 struct list_head tq_free_list; /* free taskq_ent_t's */ member