mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
io_uring: improve request linking trace
Right now any link trace is listed as being linked after the head request in the chain, but it's more useful to note explicitly which request a given new request is chained to. Change the link trace to dump the tail request so that chains are immediately apparent when looking at traces. Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
04beb6e0e0
commit
eed138d67d
@ -2153,7 +2153,7 @@ static inline int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
|
||||
* conditions are true (normal request), then just queue it.
|
||||
*/
|
||||
if (unlikely(link->head)) {
|
||||
trace_io_uring_link(req, link->head);
|
||||
trace_io_uring_link(req, link->last);
|
||||
link->last->link = req;
|
||||
link->last = req;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user