If we get an error in io_init_req() for a request that would have been
linked, we break the submission but still issue a partially composed
link, that's nasty, fail it instead.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fail_req:
io_put_req(req);
io_req_complete(req, ret);
+ /* fail even hard links since we don't submit */
+ if (link->head)
+ link->head->flags |= REQ_F_FAIL_LINK;
return ret;
}
ctx->drain_next = 1;
}
ret = io_req_defer_prep(req, sqe);
- if (unlikely(ret)) {
- /* fail even hard links since we don't submit */
- head->flags |= REQ_F_FAIL_LINK;
+ if (unlikely(ret))
goto fail_req;
- }
trace_io_uring_link(ctx, req, head);
link->last->link = req;
link->last = req;