diff options
author | Christoph Hellwig <hch@lst.de> | 2023-04-13 08:40:41 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-04-13 06:52:29 -0600 |
commit | 94aa228c2a2f6edc8e9b7c4745942ea4c5978977 (patch) | |
tree | f668b0a3abcaa3af5745ec83dbd968e5b31a51b9 /block/blk-mq.h | |
parent | 90110e04f265b95f59fbae09c228c5920b8a302f (diff) | |
download | linux-stable-94aa228c2a2f6edc8e9b7c4745942ea4c5978977.tar.gz linux-stable-94aa228c2a2f6edc8e9b7c4745942ea4c5978977.tar.bz2 linux-stable-94aa228c2a2f6edc8e9b7c4745942ea4c5978977.zip |
blk-mq: move more logic into blk_mq_insert_requests
Move all logic related to the direct insert (including the call to
blk_mq_run_hw_queue) into blk_mq_insert_requests to streamline the code
flow up a bit, and to allow marking blk_mq_try_issue_list_directly
static.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
Link: https://lore.kernel.org/r/20230413064057.707578-5-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.h')
-rw-r--r-- | block/blk-mq.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/block/blk-mq.h b/block/blk-mq.h index fa13b694ff27..5d551f9ef2d6 100644 --- a/block/blk-mq.h +++ b/block/blk-mq.h @@ -70,9 +70,7 @@ void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, void blk_mq_request_bypass_insert(struct request *rq, bool at_head, bool run_queue); void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx, - struct list_head *list); -void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx, - struct list_head *list); + struct list_head *list, bool run_queue_async); /* * CPU -> queue mappings |