Skip to content

Commit 08407b5

Browse files
valschneiderPeter Zijlstra
authored andcommitted
smp: Trace IPIs sent via arch_send_call_function_ipi_mask()
This simply wraps around the arch function and prepends it with a tracepoint, similar to send_call_function_single_ipi(). Signed-off-by: Valentin Schneider <vschneid@redhat.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Steven Rostedt (Google) <rostedt@goodmis.org> Link: https://lore.kernel.org/r/20230307143558.294354-4-vschneid@redhat.com
1 parent cc9cb0a commit 08407b5

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

kernel/smp.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ void __init call_function_init(void)
103103
smpcfd_prepare_cpu(smp_processor_id());
104104
}
105105

106+
static __always_inline void
107+
send_call_function_ipi_mask(struct cpumask *mask)
108+
{
109+
trace_ipi_send_cpumask(mask, _RET_IP_, NULL);
110+
arch_send_call_function_ipi_mask(mask);
111+
}
112+
106113
#ifdef CONFIG_CSD_LOCK_WAIT_DEBUG
107114

108115
static DEFINE_STATIC_KEY_MAYBE(CONFIG_CSD_LOCK_WAIT_DEBUG_DEFAULT, csdlock_debug_enabled);
@@ -762,7 +769,7 @@ static void smp_call_function_many_cond(const struct cpumask *mask,
762769
if (nr_cpus == 1)
763770
send_call_function_single_ipi(last_cpu);
764771
else if (likely(nr_cpus > 1))
765-
arch_send_call_function_ipi_mask(cfd->cpumask_ipi);
772+
send_call_function_ipi_mask(cfd->cpumask_ipi);
766773
}
767774

768775
if (run_local && (!cond_func || cond_func(this_cpu, info))) {

0 commit comments

Comments
 (0)