This is a trivial wrapper with a single caller, so remove it. Signed-off-by: Christoph Hellwig <hch@xxxxxx> --- block/blk-mq.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/block/blk-mq.c b/block/blk-mq.c index 7ff3415c8eadc..d26238f0de323 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -4403,12 +4403,6 @@ static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set, return 0; } -static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set, - int new_nr_hw_queues) -{ - return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues); -} - /* * Alloc a tag set to be associated with one or more request queues. * May fail with EINVAL for various error conditions. May adjust the @@ -4471,7 +4465,7 @@ int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set) goto out_free_srcu; } - ret = blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues); + ret = blk_mq_realloc_tag_set_tags(set, 0, set->nr_hw_queues); if (ret) goto out_cleanup_srcu; -- 2.30.2