diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2014-05-01 23:05:31 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2014-05-01 23:21:16 -0400 |
commit | fd06a54990e94c7f40ca21cf82b9c83106ccb94b (patch) | |
tree | 63e415d705d9fb1d422c9a202b0d3e22fe7f1192 /kernel | |
parent | b1169cc69ba96b124df820904a6d3eb775491d7f (diff) |
ftrace: Have function graph tracer use global_ops for filtering
Commit 4104d326b670 "ftrace: Remove global function list and call
function directly" cleaned up the global_ops filtering and made
the code simpler. But it left out function graph filtering which
also depended on that code. The function graph filtering still
needs to use global_ops as the filter otherwise it wont filter
at all.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/trace/ftrace.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 34b098bfded4..9eb1aa03a18d 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -5008,12 +5008,6 @@ ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state, | |||
5008 | return NOTIFY_DONE; | 5008 | return NOTIFY_DONE; |
5009 | } | 5009 | } |
5010 | 5010 | ||
5011 | /* Just a place holder for function graph */ | ||
5012 | static struct ftrace_ops fgraph_ops __read_mostly = { | ||
5013 | .func = ftrace_stub, | ||
5014 | .flags = FTRACE_OPS_FL_STUB | FTRACE_OPS_FL_RECURSION_SAFE, | ||
5015 | }; | ||
5016 | |||
5017 | static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace) | 5011 | static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace) |
5018 | { | 5012 | { |
5019 | if (!ftrace_ops_test(&global_ops, trace->func, NULL)) | 5013 | if (!ftrace_ops_test(&global_ops, trace->func, NULL)) |
@@ -5076,7 +5070,10 @@ int register_ftrace_graph(trace_func_graph_ret_t retfunc, | |||
5076 | ftrace_graph_entry = ftrace_graph_entry_test; | 5070 | ftrace_graph_entry = ftrace_graph_entry_test; |
5077 | update_function_graph_func(); | 5071 | update_function_graph_func(); |
5078 | 5072 | ||
5079 | ret = ftrace_startup(&fgraph_ops, FTRACE_START_FUNC_RET); | 5073 | /* Function graph doesn't use the .func field of global_ops */ |
5074 | global_ops.flags |= FTRACE_OPS_FL_STUB; | ||
5075 | |||
5076 | ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET); | ||
5080 | 5077 | ||
5081 | out: | 5078 | out: |
5082 | mutex_unlock(&ftrace_lock); | 5079 | mutex_unlock(&ftrace_lock); |
@@ -5094,7 +5091,8 @@ void unregister_ftrace_graph(void) | |||
5094 | ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub; | 5091 | ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub; |
5095 | ftrace_graph_entry = ftrace_graph_entry_stub; | 5092 | ftrace_graph_entry = ftrace_graph_entry_stub; |
5096 | __ftrace_graph_entry = ftrace_graph_entry_stub; | 5093 | __ftrace_graph_entry = ftrace_graph_entry_stub; |
5097 | ftrace_shutdown(&fgraph_ops, FTRACE_STOP_FUNC_RET); | 5094 | ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET); |
5095 | global_ops.flags &= ~FTRACE_OPS_FL_STUB; | ||
5098 | unregister_pm_notifier(&ftrace_suspend_notifier); | 5096 | unregister_pm_notifier(&ftrace_suspend_notifier); |
5099 | unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL); | 5097 | unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL); |
5100 | 5098 | ||