io_uring: make submission ref putting consistent
authorPavel Begunkov <asml.silence@gmail.com>
Tue, 3 Mar 2020 18:33:11 +0000 (21:33 +0300)
committerJens Axboe <axboe@kernel.dk>
Wed, 4 Mar 2020 03:02:35 +0000 (20:02 -0700)
commit594506fec5faec2b1ec82ad6fb0c8132512fc459
tree59c8b18a373e1df6ae07e48af6219645e11653ef
parenta2100672f3b2afdd55ccc2e640d1a8bd99ff6338
io_uring: make submission ref putting consistent

The rule is simple, any async handler gets a submission ref and should
put it at the end. Make them all follow it, and so more consistent.

This is a preparation patch, and as io_wq_assign_next() currently won't
ever work, this doesn't care to use io_put_req_find_next() instead of
io_put_req().

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
refcount_inc_not_zero() -> refcount_inc() fix.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c