blk-mq: In blk_mq_dispatch_rq_list() "no budget" is a reason to kick
authorDouglas Anderson <dianders@chromium.org>
Mon, 20 Apr 2020 16:24:51 +0000 (09:24 -0700)
committerJens Axboe <axboe@kernel.dk>
Mon, 20 Apr 2020 16:34:56 +0000 (10:34 -0600)
commitab3cee3762e5e69f27c302c43691289fdfc12316
tree500a636042931747e63ebf897b47b549b79bbd05
parentae83d0b416db002fe95601e7f97f64b59514d936
blk-mq: In blk_mq_dispatch_rq_list() "no budget" is a reason to kick

In blk_mq_dispatch_rq_list(), if blk_mq_sched_needs_restart() returns
true and the driver returns BLK_STS_RESOURCE then we'll kick the
queue.  However, there's another case where we might need to kick it.
If we were unable to get budget we can be in much the same state as
when the driver returns BLK_STS_RESOURCE, so we should treat it the
same.

It should be noted that even if we add a whole bunch of extra kicking
to the queue in other patches this patch is still important.
Specifically any kicking that happened before we re-spliced leftover
requests into 'hctx->dispatch' wouldn't have found any work, so we
really need to make sure we kick ourselves after we've done the
splicing.

Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq.c