Re: [PATCH V2 3/5] nvmet: ignore discard return value
From: Christoph Hellwig
Date: Mon Nov 24 2025 - 01:29:13 EST
> + nvmet_lba_to_sect(ns, range.slba),
> + nr_sects,
> + GFP_KERNEL, &bio);
This can be condensed a bit to:
nvmet_lba_to_sect(ns, range.slba), nr_sects,
GFP_KERNEL, &bio);
Otherwise looks good:
Reviewed-by: Christoph Hellwig <hch@xxxxxx>