Replace trace_foo() with the new trace_invoke_foo() at sites already
guarded by trace_foo_enabled(), avoiding a redundant
static_branch_unlikely() re-evaluation inside the tracepoint.
trace_invoke_foo() calls the tracepoint callbacks directly without
utilizing the static branch again.

Suggested-by: Steven Rostedt <[email protected]>
Suggested-by: Peter Zijlstra <[email protected]>
Signed-off-by: Vineeth Pillai (Google) <[email protected]>
Assisted-by: Claude:claude-sonnet-4-6
---
 drivers/fsi/fsi-master-aspeed.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fsi/fsi-master-aspeed.c b/drivers/fsi/fsi-master-aspeed.c
index aa1380cdff338..07b88ef49cc47 100644
--- a/drivers/fsi/fsi-master-aspeed.c
+++ b/drivers/fsi/fsi-master-aspeed.c
@@ -229,7 +229,7 @@ static int check_errors(struct fsi_master_aspeed *aspeed, 
int err)
                opb_readl(aspeed, ctrl_base + FSI_MSTAP0, &mstap0);
                opb_readl(aspeed, ctrl_base + FSI_MESRB0, &mesrb0);
 
-               trace_fsi_master_aspeed_opb_error(
+               trace_invoke_fsi_master_aspeed_opb_error(
                                be32_to_cpu(mresp0),
                                be32_to_cpu(mstap0),
                                be32_to_cpu(mesrb0));
-- 
2.53.0


Reply via email to