diff options
author | John Garry <john.garry@huawei.com> | 2021-12-06 20:49:48 +0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-12-06 13:18:47 -0700 |
commit | 8ab30a331946c34e4ba022c44df8624acea1c74e (patch) | |
tree | dcebc49ca178812b772eafb75c9dcfebba62a24b /include/linux/blk-mq.h | |
parent | 73f3760eddc9bc32c207fff06537f98f94bef451 (diff) | |
download | linux-stable-8ab30a331946c34e4ba022c44df8624acea1c74e.tar.gz linux-stable-8ab30a331946c34e4ba022c44df8624acea1c74e.tar.bz2 linux-stable-8ab30a331946c34e4ba022c44df8624acea1c74e.zip |
blk-mq: Drop busy_iter_fn blk_mq_hw_ctx argument
The only user of blk_mq_hw_ctx blk_mq_hw_ctx argument is
blk_mq_rq_inflight().
Function blk_mq_rq_inflight() uses the hctx to find the associated request
queue to match against the request. However this same check is already
done in caller bt_iter(), so drop this check.
With that change there are no more users of busy_iter_fn blk_mq_hw_ctx
argument, so drop the argument.
Reviewed-by Hannes Reinecke <hare@suse.de>
Signed-off-by: John Garry <john.garry@huawei.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Tested-by: Kashyap Desai <kashyap.desai@broadcom.com>
Link: https://lore.kernel.org/r/1638794990-137490-2-git-send-email-john.garry@huawei.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blk-mq.h')
-rw-r--r-- | include/linux/blk-mq.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index ecdc049b52fa..17ebf29e42d8 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -470,8 +470,7 @@ struct blk_mq_queue_data { bool last; }; -typedef bool (busy_iter_fn)(struct blk_mq_hw_ctx *, struct request *, void *, - bool); +typedef bool (busy_iter_fn)(struct request *, void *, bool); typedef bool (busy_tag_iter_fn)(struct request *, void *, bool); /** |