aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2019-12-02 18:49:10 -0700
committerJens Axboe <axboe@kernel.dk>2019-12-02 18:49:10 -0700
commit441cdbd5449b4923cd413d3ba748124f91388be9 (patch)
tree1eaafe0c65ca80c013c09d04628ad78cf98f8113 /fs/io_uring.c
parentio_uring: use current task creds instead of allocating a new one (diff)
downloadlinux-dev-441cdbd5449b4923cd413d3ba748124f91388be9.tar.xz
linux-dev-441cdbd5449b4923cd413d3ba748124f91388be9.zip
io_uring: transform send/recvmsg() -ERESTARTSYS to -EINTR
We should never return -ERESTARTSYS to userspace, transform it into -EINTR. Cc: stable@vger.kernel.org # v5.3+ Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 5cab7a047317..a91743e1fa2c 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -1917,6 +1917,8 @@ static int io_send_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
ret = fn(sock, msg, flags);
if (force_nonblock && ret == -EAGAIN)
return ret;
+ if (ret == -ERESTARTSYS)
+ ret = -EINTR;
}
io_cqring_add_event(req, ret);