io_uring/region: return negative -E2BIG in io_create_region()
authorDan Carpenter <dan.carpenter@linaro.org>
Wed, 20 Nov 2024 09:15:05 +0000 (12:15 +0300)
committerJens Axboe <axboe@kernel.dk>
Wed, 20 Nov 2024 15:01:59 +0000 (08:01 -0700)
commit2ae6bdb1e145af0a47253953132decbd2d52f4b2
tree197909f31b8b170c6749d33a09bbc5536d505699
parente358e09a894dbcd51fdbbcf62bec1df249915834
io_uring/region: return negative -E2BIG in io_create_region()

This code accidentally returns positivie E2BIG instead of negative
-E2BIG.  The callers treat negatives and positives the same so this
doesn't affect the kernel.  The error code is returned to userspace via
the system call.

Fixes: dfbbfbf19187 ("io_uring: introduce concept of memory regions")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/d8ea3bef-74d8-4f77-8223-6d36464dd4dc@stanley.mountain
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/memmap.c