summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2025-08-07 14:01:46 -0600
committerJens Axboe <axboe@kernel.dk>2025-08-24 11:41:12 -0600
commitd0201c4436c53412146d526855c585fa9d54ca13 (patch)
tree20e1e691b3be86fee1faa0c988d8b015bb8e55c0 /include/trace
parente5c717e7953b688049cdc2a2a474e4905e0da3c0 (diff)
downloadlinux-d0201c4436c53412146d526855c585fa9d54ca13.tar.gz
linux-d0201c4436c53412146d526855c585fa9d54ca13.tar.bz2
linux-d0201c4436c53412146d526855c585fa9d54ca13.zip
io_uring: remove io_ctx_cqe32() helper
It's pretty pointless and only used for the tracing helper, get rid of it. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/io_uring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/events/io_uring.h b/include/trace/events/io_uring.h
index 178ab6f611be..6a970625a3ea 100644
--- a/include/trace/events/io_uring.h
+++ b/include/trace/events/io_uring.h
@@ -340,8 +340,8 @@ TP_PROTO(struct io_ring_ctx *ctx, void *req, struct io_uring_cqe *cqe),
__entry->user_data = cqe->user_data;
__entry->res = cqe->res;
__entry->cflags = cqe->flags;
- __entry->extra1 = io_ctx_cqe32(ctx) ? cqe->big_cqe[0] : 0;
- __entry->extra2 = io_ctx_cqe32(ctx) ? cqe->big_cqe[1] : 0;
+ __entry->extra1 = ctx->flags & IORING_SETUP_CQE32 ? cqe->big_cqe[0] : 0;
+ __entry->extra2 = ctx->flags & IORING_SETUP_CQE32 ? cqe->big_cqe[1] : 0;
),
TP_printk("ring %p, req %p, user_data 0x%llx, result %d, cflags 0x%x "