Lines Matching refs:fwork
940 struct kthread_flush_work *fwork = in kthread_flush_work_fn() local
942 complete(&fwork->done); in kthread_flush_work_fn()
953 struct kthread_flush_work fwork = { in kthread_flush_work() local
954 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_work()
955 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_work()
969 kthread_insert_work(worker, &fwork.work, work->node.next); in kthread_flush_work()
971 kthread_insert_work(worker, &fwork.work, in kthread_flush_work()
979 wait_for_completion(&fwork.done); in kthread_flush_work()
1160 struct kthread_flush_work fwork = { in kthread_flush_worker() local
1161 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_worker()
1162 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_worker()
1165 kthread_queue_work(worker, &fwork.work); in kthread_flush_worker()
1166 wait_for_completion(&fwork.done); in kthread_flush_worker()