]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drbd: bitmap bulk IO: do not always suspend IO
authorLars Ellenberg <lars.ellenberg@linbit.com>
Mon, 13 Jun 2016 22:26:10 +0000 (00:26 +0200)
committerJens Axboe <axboe@fb.com>
Tue, 14 Jun 2016 03:43:03 +0000 (21:43 -0600)
The intention was to only suspend IO if some normal bitmap operation is
supposed to be locked out, not always. If the bulk operation is flaged
as BM_LOCKED_CHANGE_ALLOWED, we do not need to suspend IO.

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/drbd/drbd_main.c

index 2b37744db0fa3232443122dbe4958231ad9f47f4..2891631df59643b7e563bb006f5d87b734980ba6 100644 (file)
@@ -3587,18 +3587,20 @@ void drbd_queue_bitmap_io(struct drbd_device *device,
 int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
                char *why, enum bm_flag flags)
 {
+       /* Only suspend io, if some operation is supposed to be locked out */
+       const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
        int rv;
 
        D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
 
-       if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
+       if (do_suspend_io)
                drbd_suspend_io(device);
 
        drbd_bm_lock(device, why, flags);
        rv = io_fn(device);
        drbd_bm_unlock(device);
 
-       if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
+       if (do_suspend_io)
                drbd_resume_io(device);
 
        return rv;