Home
last modified time | relevance | path

Searched refs:taskq_t (Results 1 – 25 of 29) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dtaskq.h45 } taskq_t; typedef
85 extern taskq_t *system_taskq;
87 extern taskq_t *system_delay_taskq;
102 extern void taskq_destroy(taskq_t *);
103 extern void taskq_wait_id(taskq_t *, taskqid_t);
105 extern void taskq_wait(taskq_t *);
107 extern int taskq_member(taskq_t *, kthread_t *);
108 extern taskq_t *taskq_of_curthread(void);
109 void taskq_suspend(taskq_t *);
110 int taskq_suspended(taskq_t *);
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dtaskq.h107 } taskq_t; typedef
117 taskq_t *tqent_taskq;
129 taskq_t *tqt_tq;
136 extern taskq_t *system_taskq;
138 extern taskq_t *system_delay_taskq;
152 extern void taskq_destroy(taskq_t *);
153 extern void taskq_wait_id(taskq_t *, taskqid_t);
155 extern void taskq_wait(taskq_t *);
156 extern int taskq_cancel_id(taskq_t *, taskqid_t);
157 extern int taskq_member(taskq_t *, kthread_t *);
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libzpool/
H A Dtaskq.c34 taskq_t *system_taskq;
35 taskq_t *system_delay_taskq;
42 task_alloc(taskq_t *tq, int tqflags) in task_alloc()
87 task_free(taskq_t *tq, taskq_ent_t *t) in task_free()
191 taskq_wait(taskq_t *tq) in taskq_wait()
214 taskq_t *tq = arg; in taskq_thread()
251 taskq_t *
255 taskq_t *tq = kmem_zalloc(sizeof (taskq_t), KM_SLEEP); in taskq_create()
302 taskq_destroy(taskq_t *tq) in taskq_destroy()
332 kmem_free(tq, sizeof (taskq_t)); in taskq_destroy()
[all …]
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_taskq.c58 taskq_t *system_taskq = NULL;
60 taskq_t *dynamic_taskq = NULL;
202 taskq_t *tq = context; in taskq_tsd_set()
211 static taskq_t *
215 taskq_t *tq; in taskq_create_impl()
230 return ((taskq_t *)tq); in taskq_create_impl()
233 taskq_t *
240 taskq_t *
248 taskq_destroy(taskq_t *tq) in taskq_destroy()
262 taskq_t *
[all …]
H A Dspl_vfs.c274 vn_rele_async(vnode_t *vp, taskq_t *taskq) in vn_rele_async()
283 VERIFY(taskq_dispatch((taskq_t *)taskq, in vn_rele_async()
/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-taskq.c55 taskq_t *system_taskq;
94 taskq_t *tq; in taskq_find_by_name()
488 taskq_wait(taskq_t *tq) in taskq_wait()
501 taskq_t *
791 taskq_t *tq = (taskq_t *)arg; in taskq_thread_spawn_task()
861 taskq_t *tq; in taskq_thread()
1034 taskq_t *
1038 taskq_t *tq; in taskq_create()
1245 taskq_t *tq = NULL; in param_set_taskq_kick()
1295 taskq_t *tq = list_entry(node, taskq_t, tq_hp_cb_node); in spl_taskq_expand()
[all …]
H A Dspl-proc.c250 taskq_t *tq = p; in taskq_seq_show_impl()
402 return (list_entry(p, taskq_t, tq_taskqs)); in taskq_seq_start()
408 taskq_t *tq = p; in taskq_seq_next()
412 NULL : list_entry(tq->tq_taskqs.next, taskq_t, tq_taskqs)); in taskq_seq_next()
H A Dspl-kmem-cache.c158 taskq_t *spl_kmem_cache_taskq; /* Task queue for aging / reclaim */
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_context.h480 } taskq_t;
497 extern taskq_t *system_taskq;
498 extern taskq_t *system_delay_taskq;
508 extern void taskq_dispatch_ent(taskq_t *, task_func_t, void *, uint_t,
512 extern void taskq_destroy(taskq_t *);
513 extern void taskq_wait(taskq_t *);
514 extern void taskq_wait_id(taskq_t *, taskqid_t);
515 extern void taskq_wait_outstanding(taskq_t *, taskqid_t);
516 extern int taskq_member(taskq_t *, kthread_t *);
517 extern taskq_t *taskq_of_curthread(void);
[all …]
H A Ddsl_pool.h135 taskq_t *dp_sync_taskq;
136 taskq_t *dp_zil_clean_taskq;
180 taskq_t *dsl_pool_zrele_taskq(dsl_pool_t *dp);
181 taskq_t *dsl_pool_unlinked_drain_taskq(dsl_pool_t *dp);
H A Dspa_impl.h182 taskq_t **stqs_taskq;
411 taskq_t *spa_zvol_taskq; /* Taskq for minor management */
412 taskq_t *spa_prefetch_taskq; /* Taskq for prefetch threads */
435 taskq_t *spa_upgrade_taskq; /* taskq for upgrade jobs */
H A Dtxg_impl.h118 taskq_t *tx_commit_cb_taskq; /* commit callback taskq */
H A Ddsl_scan.h133 taskq_t *scn_taskq; /* task queue for issuing extents */
H A Dmetaslab_impl.h253 taskq_t *mg_taskq;
H A Darc_impl.h900 extern taskq_t *arc_prune_taskq;
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dvdev_file.c41 static taskq_t *vdev_file_taskq;
H A Dzfs_dir.c425 extern taskq_t *zfsvfs_taskq;
H A Dzfs_vfsops.c932 taskq_t *zfsvfs_taskq;
/f-stack/freebsd/contrib/openzfs/module/icp/core/
H A Dkcf_sched.c561 taskq_t *taskq = new_pd->pd_sched_info.ks_taskq; in kcf_resubmit_request()
579 static inline int EMPTY_TASKQ(taskq_t *tq) in EMPTY_TASKQ()
609 taskq_t *taskq = pd->pd_sched_info.ks_taskq; in kcf_submit_request()
1684 taskq_t *taskq = pd->pd_sched_info.ks_taskq; in kcf_next_req()
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dvdev_file.c46 static taskq_t *vdev_file_taskq;
H A Dzvol_os.c56 taskq_t *zvol_taskq;
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddsl_pool.c1110 taskq_t *
1116 taskq_t *
H A Ddmu_objset.c2565 taskq_t *dc_tq;
2737 taskq_t *tq = NULL; in dmu_objset_find_dp()
H A Dspa.c964 tqs->stqs_taskq = kmem_alloc(count * sizeof (taskq_t *), KM_SLEEP); in spa_taskqs_init()
987 taskq_t *tq; in spa_taskqs_init()
1046 kmem_free(tqs->stqs_taskq, tqs->stqs_count * sizeof (taskq_t *)); in spa_taskqs_fini()
1061 taskq_t *tq; in spa_taskq_dispatch_ent()
1083 taskq_t *tq; in spa_taskq_dispatch_sync()
/f-stack/freebsd/contrib/openzfs/module/icp/include/sys/crypto/
H A Dimpl.h86 taskq_t *ks_taskq;

12