Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-proc.c402 return (list_entry(p, taskq_t, tq_taskqs)); in taskq_seq_start()
411 return ((tq->tq_taskqs.next == &tq_list) ? in taskq_seq_next()
412 NULL : list_entry(tq->tq_taskqs.next, taskq_t, tq_taskqs)); in taskq_seq_next()
H A Dspl-taskq.c97 tq = list_entry(tql, taskq_t, tq_taskqs); in taskq_find_by_name()
1097 INIT_LIST_HEAD(&tq->tq_taskqs); in taskq_create()
1135 list_add_tail(&tq->tq_taskqs, &tq_list); in taskq_create()
1173 list_del(&tq->tq_taskqs); in taskq_destroy()
1256 list_for_each_entry(tq, &tq_list, tq_taskqs) { in param_set_taskq_kick()
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dtaskq.h100 struct list_head tq_taskqs; /* all taskq_t's */ member