From: Jens Axboe Date: Fri, 23 Jan 2026 12:09:08 +0000 (-0700) Subject: io_uring: fix bad indentation for setup flags if statement X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1edf0891d0f4a6c186721e41323c9a3b86ceceda;p=thirdparty%2Flinux.git io_uring: fix bad indentation for setup flags if statement smatch complains about this: smatch warnings: io_uring/io_uring.c:2741 io_uring_sanitise_params() warn: if statement not indented hence fix it up. Link: https://lore.kernel.org/all/202601231651.HeTmPS8C-lkp@intel.com/ Fixes: 5247c034a67f ("io_uring: introduce non-circular SQ") Reported-by: kernel test robot Reported-by: Dan Carpenter Closes: https://lore.kernel.org/r/202601231651.HeTmPS8C-lkp@intel.com/ Signed-off-by: Jens Axboe --- diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c index 0f88ec74e55d1..5c503a3f6ecca 100644 --- a/io_uring/io_uring.c +++ b/io_uring/io_uring.c @@ -2740,7 +2740,7 @@ static int io_uring_sanitise_params(struct io_uring_params *p) if (flags & IORING_SETUP_SQ_REWIND) { if ((flags & IORING_SETUP_SQPOLL) || !(flags & IORING_SETUP_NO_SQARRAY)) - return -EINVAL; + return -EINVAL; } /* There is no way to mmap rings without a real fd */