]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit0a91ff8e558d036737d734a92e94ab2dfd65fccf
tree500a636042931747e63ebf897b47b549b79bbd05
parente4e79bc94ba2381f2a677c8e345f3bbe0674f2c2
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