Lines Matching refs:fwork
930 struct kthread_flush_work *fwork = in kthread_flush_work_fn() local
932 complete(&fwork->done); in kthread_flush_work_fn()
943 struct kthread_flush_work fwork = { in kthread_flush_work() local
944 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_work()
945 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_work()
959 kthread_insert_work(worker, &fwork.work, work->node.next); in kthread_flush_work()
961 kthread_insert_work(worker, &fwork.work, in kthread_flush_work()
969 wait_for_completion(&fwork.done); in kthread_flush_work()
1150 struct kthread_flush_work fwork = { in kthread_flush_worker() local
1151 KTHREAD_WORK_INIT(fwork.work, kthread_flush_work_fn), in kthread_flush_worker()
1152 COMPLETION_INITIALIZER_ONSTACK(fwork.done), in kthread_flush_worker()
1155 kthread_queue_work(worker, &fwork.work); in kthread_flush_worker()
1156 wait_for_completion(&fwork.done); in kthread_flush_worker()