From c1f480a9a0b92dabebdcac77c8d97a200c5924cd Mon Sep 17 00:00:00 2001 From: Pavel Begunkov Date: Sat, 25 Jan 2020 22:34:01 +0300 Subject: [PATCH] io_uring: fix refcounting with batched allocations at OOM to #26323588 commit 9466f43741bc08edd7b1bee642dd6f5561091634 upstream. In case of out of memory the second argument of percpu_ref_put_many() in io_submit_sqes() may evaluate into "nr - (-EAGAIN)", that is clearly wrong. Fixes: 2b85edfc0c90 ("io_uring: batch getting pcpu references") Signed-off-by: Pavel Begunkov Signed-off-by: Jens Axboe Signed-off-by: Joseph Qi Acked-by: Xiaoguang Wang --- fs/io_uring.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 76be27600631..0ffa8537c36a 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -4827,8 +4827,11 @@ static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr, break; } - if (submitted != nr) - percpu_ref_put_many(&ctx->refs, nr - submitted); + if (unlikely(submitted != nr)) { + int ref_used = (submitted == -EAGAIN) ? 0 : submitted; + + percpu_ref_put_many(&ctx->refs, nr - ref_used); + } if (link) io_queue_link_head(link); if (statep) -- GitLab