Commit 7179c3ce authored by Pavel Begunkov's avatar Pavel Begunkov Committed by Jens Axboe
Browse files

io_uring: fix poll error reporting



We should not return an error code in req->result in
io_poll_check_events(), because it may get mangled and returned as
success. Just return the error code directly, the callers will fail the
request or proceed accordingly.

Fixes: 6bf9c47a ("io_uring: defer file assignment")
Signed-off-by: default avatarPavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/5f03514ee33324dc811fb93df84aee0f695fb044.1649862516.git.asml.silence@gmail.com


Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent cce64ef0
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -5861,8 +5861,7 @@ static int io_poll_check_events(struct io_kiocb *req, bool locked)
			unsigned flags = locked ? 0 : IO_URING_F_UNLOCKED;

			if (unlikely(!io_assign_file(req, flags)))
				req->result = -EBADF;
			else
				return -EBADF;
			req->result = vfs_poll(req->file, &pt) & req->apoll_events;
		}