Re: [PATCH 2/4] blk-mq: improve error handling in blk_mq_alloc_rq_map()

From: Christoph Hellwig
Date: Tue Nov 01 2022 - 13:34:24 EST


> if (!tags)
> - return NULL;
> + goto err_out;

Using a label just for the direct error return here is a bit silly.

The rest looks fine.