blk-iolatency: deal with nr_requests == 1
authorJosef Bacik <josef@toxicpanda.com>
Fri, 28 Sep 2018 17:45:40 +0000 (13:45 -0400)
committerJens Axboe <axboe@kernel.dk>
Fri, 28 Sep 2018 17:47:28 +0000 (11:47 -0600)
Hitting the case where blk_queue_depth() returned 1 uncovered the fact
that iolatency doesn't actually handle this case properly, it simply
doesn't scale down anybody.  For this case we should go straight into
applying the time delay, which we weren't doing.  Since we already limit
the floor at 1 request this if statement is not needed, and this allows
us to set our depth to 1 which allows us to apply the delay if needed.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-iolatency.c

index c2e38bc12f2704dd505490360f5960d53ad7d0bb..8daea7a4fe492ebd732100ddb43fbb981d31eec8 100644 (file)
@@ -312,7 +312,7 @@ static void scale_change(struct iolatency_grp *iolat, bool up)
                        iolat->rq_depth.max_depth = old;
                        wake_up_all(&iolat->rq_wait.wait);
                }
-       } else if (old > 1) {
+       } else {
                old >>= 1;
                iolat->rq_depth.max_depth = max(old, 1UL);
        }