Lines Matching refs:fwork
978 struct kthread_flush_work *fwork = in kthread_flush_work_fn() local
980 complete(&fwork->done); in kthread_flush_work_fn()
991 struct kthread_flush_work fwork = { in kthread_flush_work() local
992 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_work()
993 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_work()
1007 kthread_insert_work(worker, &fwork.work, work->node.next); in kthread_flush_work()
1009 kthread_insert_work(worker, &fwork.work, in kthread_flush_work()
1017 wait_for_completion(&fwork.done); in kthread_flush_work()
1198 struct kthread_flush_work fwork = { in kthread_flush_worker() local
1199 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_worker()
1200 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_worker()
1203 kthread_queue_work(worker, &fwork.work); in kthread_flush_worker()
1204 wait_for_completion(&fwork.done); in kthread_flush_worker()