On Thu, May 7, 2020 at 2:12 PM Christoph Hellwig <hch@xxxxxxxxxxxxx> wrote: > > On Tue, May 05, 2020 at 02:45:58PM +0800, Weiping Zhang wrote: > > rename __blk_mq_alloc_rq_map to __blk_mq_alloc_map_and_request, > > actually it alloc both map and request, make function name > > align with function. > > > > Reviewed-by: Ming Lei <ming.lei@xxxxxxxxxx> > > Signed-off-by: Weiping Zhang <zhangweiping@xxxxxxxxxxxxxx> > > --- > > block/blk-mq.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/block/blk-mq.c b/block/blk-mq.c > > index c6ba94cba17d..02af33f56daa 100644 > > --- a/block/blk-mq.c > > +++ b/block/blk-mq.c > > @@ -2473,7 +2473,7 @@ static void blk_mq_init_cpu_queues(struct request_queue *q, > > } > > } > > > > -static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx) > > +static bool __blk_mq_alloc_map_and_request(struct blk_mq_tag_set *set, int hctx_idx) > > Please fix the > 80 char line here. OK, fix in v6. Thanks