io_uring: fix poll error reporting
authorPavel Begunkov <asml.silence@gmail.com>
Mon, 18 Apr 2022 12:41:20 +0000 (06:41 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Apr 2022 07:36:28 +0000 (09:36 +0200)
commitb74c1d1782d5517f08dab36f3ee9a6dd6e1941c2
treed6d388ba292dad91af12811431c0b3ad1bb6046c
parent540e5ce8b3bc5548d5a342d0f4a57779715545c0
io_uring: fix poll error reporting

commit 7179c3ce3dbff646c55f7cd664a895f462f049e5 upstream.

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: 6bf9c47a3989 ("io_uring: defer file assignment")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/5f03514ee33324dc811fb93df84aee0f695fb044.1649862516.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/io_uring.c