Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/md/
Dmd-bitmap.c1270 struct bitmap_unplug_work *unplug_work = in md_bitmap_unplug_fn() local
1273 __bitmap_unplug(unplug_work->bitmap); in md_bitmap_unplug_fn()
1274 complete(unplug_work->done); in md_bitmap_unplug_fn()
1280 struct bitmap_unplug_work unplug_work; in bitmap_unplug_async() local
1282 INIT_WORK_ONSTACK(&unplug_work.work, md_bitmap_unplug_fn); in bitmap_unplug_async()
1283 unplug_work.bitmap = bitmap; in bitmap_unplug_async()
1284 unplug_work.done = &done; in bitmap_unplug_async()
1286 queue_work(md_bitmap_wq, &unplug_work.work); in bitmap_unplug_async()
/linux-6.12.1/drivers/block/drbd/
Ddrbd_main.c1918 &device->unplug_work); in drbd_queue_unplug()
1968 INIT_LIST_HEAD(&device->unplug_work.list); in drbd_init_set_defaults()
1976 device->unplug_work.cb = w_send_write_hint; in drbd_init_set_defaults()
2050 D_ASSERT(device, list_empty(&device->unplug_work.list)); in drbd_device_cleanup()
Ddrbd_int.h776 struct drbd_work unplug_work; member
Ddrbd_worker.c1395 container_of(w, struct drbd_device, unplug_work); in w_send_write_hint()