Skip to content

Commit dc17147

Browse files
committed
tracing: Fix check for cpu online when event is disabled
Commit f377554 ("tracepoints: Do not trace when cpu is offline") added a check to make sure that tracepoints only get called when the cpu is online, as it uses rcu_read_lock_sched() for protection. Commit 3a63017 ("tracing: generate RCU warnings even when tracepoints are disabled") added lockdep checks (including rcu checks) for events that are not enabled to catch possible RCU issues that would only be triggered if a trace event was enabled. Commit f377554 only stopped the warnings when the trace event was enabled but did not prevent warnings if the trace event was called when disabled. To fix this, the cpu online check is moved to where the condition is added to the trace event. This will place the cpu online check in all places that it may be used now and in the future. Cc: stable@vger.kernel.org # v3.18+ Fixes: f377554 ("tracepoints: Do not trace when cpu is offline") Fixes: 3a63017 ("tracing: generate RCU warnings even when tracepoints are disabled") Reported-by: Sudeep Holla <sudeep.holla@arm.com> Tested-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
1 parent f6cede5 commit dc17147

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

include/linux/tracepoint.h

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,6 @@ extern void syscall_unregfunc(void);
134134
void *it_func; \
135135
void *__data; \
136136
\
137-
if (!cpu_online(raw_smp_processor_id())) \
138-
return; \
139-
\
140137
if (!(cond)) \
141138
return; \
142139
prercu; \
@@ -343,15 +340,19 @@ extern void syscall_unregfunc(void);
343340
* "void *__data, proto" as the callback prototype.
344341
*/
345342
#define DECLARE_TRACE_NOARGS(name) \
346-
__DECLARE_TRACE(name, void, , 1, void *__data, __data)
343+
__DECLARE_TRACE(name, void, , \
344+
cpu_online(raw_smp_processor_id()), \
345+
void *__data, __data)
347346

348347
#define DECLARE_TRACE(name, proto, args) \
349-
__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), 1, \
350-
PARAMS(void *__data, proto), \
351-
PARAMS(__data, args))
348+
__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
349+
cpu_online(raw_smp_processor_id()), \
350+
PARAMS(void *__data, proto), \
351+
PARAMS(__data, args))
352352

353353
#define DECLARE_TRACE_CONDITION(name, proto, args, cond) \
354-
__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), PARAMS(cond), \
354+
__DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
355+
cpu_online(raw_smp_processor_id()) && (PARAMS(cond)), \
355356
PARAMS(void *__data, proto), \
356357
PARAMS(__data, args))
357358

0 commit comments

Comments
 (0)