Home
last modified time | relevance | path

Searched refs:tq_taskqs (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-proc.c347 return (list_entry(p, taskq_t, tq_taskqs)); in taskq_seq_start()
356 return ((tq->tq_taskqs.next == &tq_list) ? in taskq_seq_next()
357 NULL : list_entry(tq->tq_taskqs.next, taskq_t, tq_taskqs)); in taskq_seq_next()
H A Dspl-taskq.c109 tq = list_entry(tql, taskq_t, tq_taskqs); in taskq_find_by_name()
1106 INIT_LIST_HEAD(&tq->tq_taskqs); in taskq_create()
1144 list_add_tail(&tq->tq_taskqs, &tq_list); in taskq_create()
1182 list_del(&tq->tq_taskqs); in taskq_destroy()
1301 list_for_each_entry(tq, &tq_list, tq_taskqs) { in param_set_taskq_kick()
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dtaskq.h100 struct list_head tq_taskqs; /* all taskq_t's */ member