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/
Dworkqueue.h135 struct delayed_work *dwork = arg; in __delayed_work_tick() local
137 task_add(dwork->tq, &dwork->work.task); in __delayed_work_tick()
141 INIT_DELAYED_WORK(struct delayed_work *dwork, work_func_t func) in INIT_DELAYED_WORK() argument
143 INIT_WORK(&dwork->work, func); in INIT_DELAYED_WORK()
144 timeout_set(&dwork->to, __delayed_work_tick, &dwork->work); in INIT_DELAYED_WORK()
148 INIT_DELAYED_WORK_ONSTACK(struct delayed_work *dwork, work_func_t func) in INIT_DELAYED_WORK_ONSTACK() argument
150 INIT_WORK(&dwork->work, func); in INIT_DELAYED_WORK_ONSTACK()
151 timeout_set(&dwork->to, __delayed_work_tick, &dwork->work); in INIT_DELAYED_WORK_ONSTACK()
169 schedule_delayed_work(struct delayed_work *dwork, int jiffies) in schedule_delayed_work() argument
171 dwork->tq = (struct taskq *)system_wq; in schedule_delayed_work()
[all …]
/openbsd/src/sys/dev/pci/drm/amd/amdkfd/
Dkfd_process.c1968 struct delayed_work *dwork; in evict_process_worker() local
1970 dwork = to_delayed_work(work); in evict_process_worker()
1975 p = container_of(dwork, struct kfd_process, eviction_work); in evict_process_worker()
2017 struct delayed_work *dwork; in restore_process_worker() local
2021 dwork = to_delayed_work(work); in restore_process_worker()
2026 p = container_of(dwork, struct kfd_process, restore_work); in restore_process_worker()
Dkfd_svm.c1804 struct delayed_work *dwork = to_delayed_work(work); in svm_range_restore_work() local
1814 svms = container_of(dwork, struct svm_range_list, restore_work); in svm_range_restore_work()
/openbsd/src/gnu/gcc/gcc/config/mt/
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/
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/
Ddrm_linux.c226 flush_delayed_work(struct delayed_work *dwork) in flush_delayed_work() argument
233 while (timeout_pending(&dwork->to)) { in flush_delayed_work()
234 tsleep(dwork, PWAIT, "fldwto", 1); in flush_delayed_work()
238 if (dwork->tq) in flush_delayed_work()
239 taskq_barrier(dwork->tq); in flush_delayed_work()
/openbsd/src/sys/dev/pci/drm/amd/amdgpu/
Damdgpu_amdkfd_gpuvm.c2787 struct delayed_work *dwork = to_delayed_work(work); in amdgpu_amdkfd_restore_userptr_worker() local
2789 container_of(dwork, struct amdkfd_process_info, in amdgpu_amdkfd_restore_userptr_worker()