diff options
author | Dylan Yudaken <dylany@fb.com> | 2022-05-12 02:18:33 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-05-12 06:18:58 -0600 |
commit | 2d2d5cb6ca8424fa849ebb4edb8e8022c13860c7 (patch) | |
tree | 28d4a94674d4e701cf984101541e25cbab1319bb /include/trace/events | |
parent | a196c78b5443fc61af2c0490213b9d125482cbd1 (diff) | |
download | linux-2d2d5cb6ca8424fa849ebb4edb8e8022c13860c7.tar.bz2 |
io_uring: fix ordering of args in io_uring_queue_async_work
Fix arg ordering in TP_ARGS macro, which fixes the output.
Fixes: 502c87d65564c ("io-uring: Make tracepoints consistent.")
Signed-off-by: Dylan Yudaken <dylany@fb.com>
Link: https://lore.kernel.org/r/20220512091834.728610-2-dylany@fb.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/trace/events')
-rw-r--r-- | include/trace/events/io_uring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/io_uring.h b/include/trace/events/io_uring.h index cddf5b6fbeb4..80d2588a090c 100644 --- a/include/trace/events/io_uring.h +++ b/include/trace/events/io_uring.h @@ -147,7 +147,7 @@ TRACE_EVENT(io_uring_queue_async_work, TP_PROTO(void *ctx, void * req, unsigned long long user_data, u8 opcode, unsigned int flags, struct io_wq_work *work, int rw), - TP_ARGS(ctx, req, user_data, flags, opcode, work, rw), + TP_ARGS(ctx, req, user_data, opcode, flags, work, rw), TP_STRUCT__entry ( __field( void *, ctx ) |