Lines Matching refs:work
63 static void normal_work_helper(struct btrfs_work *work);
68 struct btrfs_work *work = container_of(arg, struct btrfs_work, \
70 normal_work_helper(work); \
252 struct btrfs_work *work; in run_ordered_work() local
260 work = list_entry(list->next, struct btrfs_work, in run_ordered_work()
262 if (!test_bit(WORK_DONE_BIT, &work->flags)) in run_ordered_work()
278 if (test_and_set_bit(WORK_ORDER_DONE_BIT, &work->flags)) in run_ordered_work()
280 trace_btrfs_ordered_sched(work); in run_ordered_work()
282 work->ordered_func(work); in run_ordered_work()
286 list_del(&work->ordered_list); in run_ordered_work()
293 work->ordered_free(work); in run_ordered_work()
294 trace_btrfs_all_work_done(work); in run_ordered_work()
299 static void normal_work_helper(struct btrfs_work *work) in normal_work_helper() argument
312 if (work->ordered_func) in normal_work_helper()
314 wq = work->wq; in normal_work_helper()
316 trace_btrfs_work_sched(work); in normal_work_helper()
318 work->func(work); in normal_work_helper()
327 set_bit(WORK_DONE_BIT, &work->flags); in normal_work_helper()
331 trace_btrfs_all_work_done(work); in normal_work_helper()
334 void btrfs_init_work(struct btrfs_work *work, btrfs_work_func_t uniq_func, in btrfs_init_work() argument
339 work->func = func; in btrfs_init_work()
340 work->ordered_func = ordered_func; in btrfs_init_work()
341 work->ordered_free = ordered_free; in btrfs_init_work()
342 INIT_WORK(&work->normal_work, uniq_func); in btrfs_init_work()
343 INIT_LIST_HEAD(&work->ordered_list); in btrfs_init_work()
344 work->flags = 0; in btrfs_init_work()
348 struct btrfs_work *work) in __btrfs_queue_work() argument
352 work->wq = wq; in __btrfs_queue_work()
354 if (work->ordered_func) { in __btrfs_queue_work()
356 list_add_tail(&work->ordered_list, &wq->ordered_list); in __btrfs_queue_work()
359 trace_btrfs_work_queued(work); in __btrfs_queue_work()
360 queue_work(wq->normal_wq, &work->normal_work); in __btrfs_queue_work()
364 struct btrfs_work *work) in btrfs_queue_work() argument
368 if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags) && wq->high) in btrfs_queue_work()
372 __btrfs_queue_work(dest_wq, work); in btrfs_queue_work()
402 void btrfs_set_work_high_priority(struct btrfs_work *work) in btrfs_set_work_high_priority() argument
404 set_bit(WORK_HIGH_PRIO_BIT, &work->flags); in btrfs_set_work_high_priority()