block: fix missing nr_hw_queues update in blk_mq_realloc_tag_set_tags
authorShin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Tue, 22 Nov 2022 08:49:17 +0000 (17:49 +0900)
committerJens Axboe <axboe@kernel.dk>
Tue, 22 Nov 2022 13:10:54 +0000 (06:10 -0700)
commitd4b2e0d433769cb7c87e4c93dc048733388d1c46
tree4c51983db9288f8e21fe7c6a1718cf83a2937656
parent3569788c08235c6f3e9e6ca724b2df44787ff487
block: fix missing nr_hw_queues update in blk_mq_realloc_tag_set_tags

The commit ee9d55210c2f ("blk-mq: simplify blk_mq_realloc_tag_set_tags")
cleaned up the function blk_mq_realloc_tag_set_tags. After this change,
the function does not update nr_hw_queues of struct blk_mq_tag_set when
new nr_hw_queues value is smaller than original. This results in failure
of queue number change of block devices. To avoid the failure, add the
missing nr_hw_queues update.

Fixes: ee9d55210c2f ("blk-mq: simplify blk_mq_realloc_tag_set_tags")
Reported-by: Chaitanya Kulkarni <chaitanyak@nvidia.com>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Link: https://lore.kernel.org/linux-block/20221118140640.featvt3fxktfquwh@shindev/
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20221122084917.2034220-1-shinichiro.kawasaki@wdc.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq.c