On 10/12/21 11:17 AM, Jens Axboe wrote:
+void blk_mq_put_tags(struct blk_mq_tags *tags, int *array, int nr_tags) +{ + sbitmap_queue_clear_batch(&tags->bitmap_tags, tags->nr_reserved_tags, + array, nr_tags); +}
How about changing the name of the 'array' argument into 'tag_array' to make it more clear what the argument represents?
Thanks, Bart.