Skip to content

Commit c32aace

Browse files
isilenceaxboe
authored andcommitted
io_uring: fix drain alloc fail return code
After a recent change io_drain_req() started to fail requests with result=0 in case of allocation failure, where it should be and have been -ENOMEM. Fixes: 76cc33d ("io_uring: refactor io_req_defer()") Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/e068110ac4293e0c56cfc4d280d0f22b9303ec08.1625682153.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent e09ee51 commit c32aace

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/io_uring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6019,7 +6019,7 @@ static bool io_drain_req(struct io_kiocb *req)
60196019
io_prep_async_link(req);
60206020
de = kmalloc(sizeof(*de), GFP_KERNEL);
60216021
if (!de) {
6022-
io_req_complete_failed(req, ret);
6022+
io_req_complete_failed(req, -ENOMEM);
60236023
return true;
60246024
}
60256025

0 commit comments

Comments
 (0)