diff options
author | John Garry <john.garry@huawei.com> | 2020-08-19 17:20:23 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-09-03 23:20:47 +0200 |
commit | 222a5ae03cdd12e7643f2f64689a39ed547650cb (patch) | |
tree | 0c9e5f6ae1341138eeddb15f43112e310497f5ae /block/bfq-iosched.c | |
parent | blk-mq: Pass flags for tag init/free (diff) | |
download | linux-222a5ae03cdd12e7643f2f64689a39ed547650cb.tar.xz linux-222a5ae03cdd12e7643f2f64689a39ed547650cb.zip |
blk-mq: Use pointers for blk_mq_tags bitmap tags
Introduce pointers for the blk_mq_tags regular and reserved bitmap tags,
with the goal of later being able to use a common shared tag bitmap across
all HW contexts in a set.
Signed-off-by: John Garry <john.garry@huawei.com>
Tested-by: Don Brace<don.brace@microsemi.com> #SCSI resv cmds patches used
Tested-by: Douglas Gilbert <dgilbert@interlog.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bfq-iosched.c')
-rw-r--r-- | block/bfq-iosched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/bfq-iosched.c b/block/bfq-iosched.c index c34b090178a9..418ffd4b5552 100644 --- a/block/bfq-iosched.c +++ b/block/bfq-iosched.c @@ -6372,8 +6372,8 @@ static void bfq_depth_updated(struct blk_mq_hw_ctx *hctx) struct blk_mq_tags *tags = hctx->sched_tags; unsigned int min_shallow; - min_shallow = bfq_update_depths(bfqd, &tags->bitmap_tags); - sbitmap_queue_min_shallow_depth(&tags->bitmap_tags, min_shallow); + min_shallow = bfq_update_depths(bfqd, tags->bitmap_tags); + sbitmap_queue_min_shallow_depth(tags->bitmap_tags, min_shallow); } static int bfq_init_hctx(struct blk_mq_hw_ctx *hctx, unsigned int index) |