From: Jens Axboe Date: Tue, 17 Nov 2020 14:59:16 +0000 (-0700) Subject: io_uring: don't double complete failed reissue request X-Git-Tag: v5.9.11~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5111454e0fdc6750c98d72f3facf180c313414b;p=thirdparty%2Fkernel%2Fstable.git io_uring: don't double complete failed reissue request commit c993df5a688975bf9ce899706ca13d2bc8d6be25 upstream. Zorro reports that an xfstest test case is failing, and it turns out that for the reissue path we can potentially issue a double completion on the request for the failure path. There's an issue around the retry as well, but for now, at least just make sure that we handle the error path correctly. Cc: stable@vger.kernel.org Fixes: b63534c41e20 ("io_uring: re-issue block requests that failed because of resources") Reported-by: Zorro Lang Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/io_uring.c b/fs/io_uring.c index 352bd3ad446be..e74a56f6915c0 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -2359,7 +2359,6 @@ static bool io_resubmit_prep(struct io_kiocb *req, int error) } end_req: req_set_fail_links(req); - io_req_complete(req, ret); return false; } #endif