diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-07-13 15:08:31 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-07-13 22:10:05 -0400 |
commit | 072126f4529196f71a97960248bca54fd4554c2d (patch) | |
tree | cb1275288f49b59e4643abb85855ad6889aba94f /kernel/trace/ftrace.c | |
parent | 41fb61c2d08107ce96a5dcb3a6289b2afd3e135c (diff) |
ftrace: Update filter when tracing enabled in set_ftrace_filter()
Currently, if set_ftrace_filter() is called when the ftrace_ops is
active, the function filters will not be updated. They will only be updated
when tracing is disabled and re-enabled.
Update the functions immediately during set_ftrace_filter().
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/ftrace.c')
-rw-r--r-- | kernel/trace/ftrace.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 853f6f0a4b4a..a0dc0de8d649 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -2869,6 +2869,10 @@ ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len, | |||
2869 | 2869 | ||
2870 | mutex_lock(&ftrace_lock); | 2870 | mutex_lock(&ftrace_lock); |
2871 | ret = ftrace_hash_move(ops, enable, orig_hash, hash); | 2871 | ret = ftrace_hash_move(ops, enable, orig_hash, hash); |
2872 | if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED | ||
2873 | && ftrace_enabled) | ||
2874 | ftrace_run_update_code(FTRACE_ENABLE_CALLS); | ||
2875 | |||
2872 | mutex_unlock(&ftrace_lock); | 2876 | mutex_unlock(&ftrace_lock); |
2873 | 2877 | ||
2874 | mutex_unlock(&ftrace_regex_lock); | 2878 | mutex_unlock(&ftrace_regex_lock); |