mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
io_uring: Use trace_call__##name() at guarded tracepoint call sites
Replace trace_foo() with the new trace_call__foo() at sites already guarded by trace_foo_enabled(), avoiding a redundant static_branch_unlikely() re-evaluation inside the tracepoint. trace_call__foo() calls the tracepoint callbacks directly without utilizing the static branch again. Suggested-by: Steven Rostedt <rostedt@goodmis.org> Suggested-by: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Vineeth Pillai (Google) <vineeth@bitbyteword.org> Assisted-by: Claude:claude-sonnet-4-6 Link: https://patch.msgid.link/20260515135903.2238731-1-vineeth@bitbyteword.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
b4e41050b2
commit
67ee1f021a
|
|
@ -312,7 +312,7 @@ static __always_inline bool io_fill_cqe_req(struct io_ring_ctx *ctx,
|
|||
}
|
||||
|
||||
if (trace_io_uring_complete_enabled())
|
||||
trace_io_uring_complete(req->ctx, req, cqe);
|
||||
trace_call__io_uring_complete(req->ctx, req, cqe);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user