]> git.baikalelectronics.ru Git - kernel.git/commit
io_uring: fix break condition for __io_uring_register() waiting
authorJens Axboe <axboe@kernel.dk>
Fri, 9 Oct 2020 01:09:46 +0000 (19:09 -0600)
committerJens Axboe <axboe@kernel.dk>
Fri, 9 Oct 2020 02:37:45 +0000 (20:37 -0600)
commitc19e73defb1e27e2676fba73f74da9fafc9a486f
treeaa462dd3eae9754ae41bb323e0ef79d25ef4d3d5
parentd3bb84d91cd481a94a8bf21ab46b27d4707fbe31
io_uring: fix break condition for __io_uring_register() waiting

Colin reports that there's unreachable code, since we only ever break
if ret == 0. This is correct, and is due to a reversed logic condition
in when to break or not.

Break out of the loop if we don't process any task work, in that case
we do want to return -EINTR.

Fixes: b5c13bcffb40 ("io_uring: process task work in io_uring_register()")
Reported-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c