diff options
| author | Steven Rostedt (Red Hat) <[email protected]> | 2016-12-09 00:28:28 +0000 |
|---|---|---|
| committer | Steven Rostedt <[email protected]> | 2016-12-09 14:21:35 +0000 |
| commit | 1a41442864e35bff859582fe9c5d051d0b1040ba (patch) | |
| tree | 2936a094e5539875fca532d424291bcd9eef8c0e /net/unix/af_unix.c | |
| parent | fgraph: Handle a case where a tracer ignores set_graph_notrace (diff) | |
| download | kernel-1a41442864e35bff859582fe9c5d051d0b1040ba.tar.gz kernel-1a41442864e35bff859582fe9c5d051d0b1040ba.zip | |
tracing/fgraph: Have wakeup and irqsoff tracers ignore graph functions too
Currently both the wakeup and irqsoff traces do not handle set_graph_notrace
well. The ftrace infrastructure will ignore the return paths of all
functions leaving them hanging without an end:
# echo '*spin*' > set_graph_notrace
# cat trace
[...]
_raw_spin_lock() {
preempt_count_add() {
do_raw_spin_lock() {
update_rq_clock();
Where the '*spin*' functions should have looked like this:
_raw_spin_lock() {
preempt_count_add();
do_raw_spin_lock();
}
update_rq_clock();
Instead, have the wakeup and irqsoff tracers ignore the functions that are
set by the set_graph_notrace like the function_graph tracer does. Move
the logic in the function_graph tracer into a header to allow wakeup and
irqsoff tracers to use it as well.
Cc: Namhyung Kim <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
Diffstat (limited to 'net/unix/af_unix.c')
0 files changed, 0 insertions, 0 deletions
