Home
last modified time | relevance | path

Searched refs:dwork (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/sys/dev/pci/drm/include/linux/
H A Dworkqueue.h128 struct delayed_work *dwork = arg; in __delayed_work_tick() local
130 task_add(dwork->tq, &dwork->work.task); in __delayed_work_tick()
134 INIT_DELAYED_WORK(struct delayed_work *dwork, work_func_t func) in INIT_DELAYED_WORK() argument
136 INIT_WORK(&dwork->work, func); in INIT_DELAYED_WORK()
137 timeout_set(&dwork->to, __delayed_work_tick, &dwork->work); in INIT_DELAYED_WORK()
141 INIT_DELAYED_WORK_ONSTACK(struct delayed_work *dwork, work_func_t func) in INIT_DELAYED_WORK_ONSTACK() argument
143 INIT_WORK(&dwork->work, func); in INIT_DELAYED_WORK_ONSTACK()
144 timeout_set(&dwork->to, __delayed_work_tick, &dwork->work); in INIT_DELAYED_WORK_ONSTACK()
162 schedule_delayed_work(struct delayed_work *dwork, int jiffies) in schedule_delayed_work() argument
164 dwork->tq = (struct taskq *)system_wq; in schedule_delayed_work()
[all …]
/openbsd-src/sys/dev/pci/drm/amd/amdkfd/
H A Dkfd_process.c1920 struct delayed_work *dwork; in evict_process_worker()
1922 dwork = to_delayed_work(work); in evict_process_worker()
1927 p = container_of(dwork, struct kfd_process, eviction_work); in evict_process_worker()
1955 struct delayed_work *dwork; in restore_process_worker()
1959 dwork = to_delayed_work(work); in restore_process_worker()
1964 p = container_of(dwork, struct kfd_process, restore_work); in restore_process_worker()
1919 struct delayed_work *dwork; evict_process_worker() local
1954 struct delayed_work *dwork; restore_process_worker() local
H A Dkfd_svm.c1794 struct delayed_work *dwork = to_delayed_work(work); in svm_range_restore_work()
1804 svms = container_of(dwork, struct svm_range_list, restore_work); in svm_range_restore_work()
1768 struct delayed_work *dwork = to_delayed_work(work); svm_range_restore_work() local
/openbsd-src/gnu/gcc/gcc/config/mt/
H A Dmt.c1888 unsigned dwork = 0; in mt_reorg_loops() local
1958 while (VEC_iterate (loop_work, works, dwork++, work)) in mt_reorg_loops()
1976 if (dwork) in mt_reorg_loops()
1978 VEC_block_remove (loop_work, works, 0, dwork); in mt_reorg_loops()
1979 dwork = 0; in mt_reorg_loops()
/openbsd-src/gnu/gcc/gcc/config/bfin/
H A Dbfin.c3246 unsigned dwork = 0; in bfin_discover_loop() local
3270 while (VEC_iterate (basic_block, works, dwork++, bb)) in bfin_discover_loop()
3303 if (dwork) in bfin_discover_loop()
3305 VEC_block_remove (basic_block, works, 0, dwork); in bfin_discover_loop()
3306 dwork = 0; in bfin_discover_loop()
3350 for (dwork = 0; VEC_iterate (basic_block, loop->blocks, dwork, bb); dwork++) in bfin_discover_loop()
/openbsd-src/sys/dev/pci/drm/
H A Ddrm_linux.c224 flush_delayed_work(struct delayed_work *dwork) in flush_delayed_work() argument
231 while (timeout_pending(&dwork->to)) { in flush_delayed_work()
232 tsleep(dwork, PWAIT, "fldwto", 1); in flush_delayed_work()
236 if (dwork->tq) in flush_delayed_work()
237 taskq_barrier(dwork->tq); in flush_delayed_work()
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_amdkfd_gpuvm.c2672 struct delayed_work *dwork = to_delayed_work(work); in amdgpu_amdkfd_restore_userptr_worker()
2674 container_of(dwork, struct amdkfd_process_info, in amdgpu_amdkfd_restore_userptr_worker()
2636 struct delayed_work *dwork = to_delayed_work(work); amdgpu_amdkfd_restore_userptr_worker() local