Home
last modified time | relevance | path

Searched refs:unplug_work (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/md/
H A Dmd-bitmap.c1276 struct bitmap_unplug_work *unplug_work = in md_bitmap_unplug_fn() local
1279 __bitmap_unplug(unplug_work->bitmap); in md_bitmap_unplug_fn()
1280 complete(unplug_work->done); in md_bitmap_unplug_fn()
1286 struct bitmap_unplug_work unplug_work; in bitmap_unplug_async() local
1288 INIT_WORK_ONSTACK(&unplug_work.work, md_bitmap_unplug_fn); in bitmap_unplug_async()
1289 unplug_work.bitmap = bitmap; in bitmap_unplug_async()
1290 unplug_work.done = &done; in bitmap_unplug_async()
1292 queue_work(md_bitmap_wq, &unplug_work.work); in bitmap_unplug_async()
1294 destroy_work_on_stack(&unplug_work.work); in bitmap_unplug_async()
H A Dmd-llbitmap.c1639 struct llbitmap_unplug_work *unplug_work = in llbitmap_unplug_fn() local
1641 struct llbitmap *llbitmap = unplug_work->llbitmap; in llbitmap_unplug_fn()
1657 complete(unplug_work->done); in llbitmap_unplug_fn()
1675 struct llbitmap_unplug_work unplug_work = { in llbitmap_unplug() local
1690 INIT_WORK_ONSTACK(&unplug_work.work, llbitmap_unplug_fn); in llbitmap_unplug()
1691 queue_work(md_llbitmap_unplug_wq, &unplug_work.work); in llbitmap_unplug()
1693 destroy_work_on_stack(&unplug_work.work); in llbitmap_unplug()
/linux/drivers/block/drbd/
H A Ddrbd_worker.c1376 container_of(w, struct drbd_device, unplug_work); in w_send_write_hint()