From: Fedor Pchelkin Date: Sat, 4 May 2024 11:47:02 +0000 (+0300) Subject: dma-mapping: benchmark: avoid needless copy_to_user if benchmark fails X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f7c9ccaadffd13066353332c13d7e9bf73b8f92d;p=linux.git dma-mapping: benchmark: avoid needless copy_to_user if benchmark fails If do_map_benchmark() has failed, there is nothing useful to copy back to userspace. Suggested-by: Barry Song <21cnbao@gmail.com> Signed-off-by: Fedor Pchelkin Acked-by: Robin Murphy Signed-off-by: Christoph Hellwig --- diff --git a/kernel/dma/map_benchmark.c b/kernel/dma/map_benchmark.c index 2478957cf9f83..a6edb1ef98c8a 100644 --- a/kernel/dma/map_benchmark.c +++ b/kernel/dma/map_benchmark.c @@ -256,6 +256,9 @@ static long map_benchmark_ioctl(struct file *file, unsigned int cmd, * dma_mask changed by benchmark */ dma_set_mask(map->dev, old_dma_mask); + + if (ret) + return ret; break; default: return -EINVAL;