]> git.baikalelectronics.ru Git - kernel.git/commit
tracing: irqsoff: Account for additional preempt_disable
authorJoel Fernandes (Google) <joel@joelfernandes.org>
Mon, 6 Aug 2018 03:40:49 +0000 (20:40 -0700)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 7 Aug 2018 01:55:24 +0000 (21:55 -0400)
commita50464ce67c3ef3233bb84443a661576cb7146d2
treee422ae6632fd0d11e45e2f0b889b89a7dac0b09c
parent195d9feea0fbb12a0f4e2a461e55ca5860657a38
tracing: irqsoff: Account for additional preempt_disable

Recently we tried to make the preemptirqsoff tracer to use irqsoff
tracepoint probes. However this causes issues as reported by Masami:

[2.271078] Testing tracer preemptirqsoff: .. no entries found ..FAILED!
[2.381015] WARNING: CPU: 0 PID: 1 at /home/mhiramat/ksrc/linux/kernel/
trace/trace.c:1512 run_tracer_selftest+0xf3/0x154

This is due to the tracepoint code increasing the preempt nesting count
by calling an additional preempt_disable before calling into the
preemptoff tracer which messes up the preempt_count() check in
tracer_hardirqs_off.

To fix this, make the irqsoff tracer probes balance the additional outer
preempt_disable with a preempt_enable_notrace.

The other way to fix this is to just use SRCU for all tracepoints.
However we can't do that because we can't use NMIs from RCU context.

Link: http://lkml.kernel.org/r/20180806034049.67949-1-joel@joelfernandes.org
Fixes: ae9dc543e63f ("tracing: Centralize preemptirq tracepoints and unify their usage")
Fixes: be52de1fa074 ("tracepoint: Make rcuidle tracepoint callers use SRCU")
Reported-by: Masami Hiramatsu <mhiramat@kernel.org>
Tested-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/trace_irqsoff.c