diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-06-20 00:52:21 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2009-06-20 00:52:21 -0400 |
commit | 9ea1a153a4fb435c22e9988784bb476671286112 (patch) | |
tree | 0f13f65f1bb8edae5a2906d22a209ff013e283ec /kernel | |
parent | c85a17e22695969aa24a7ffa40cf26d6e6fcfd50 (diff) |
tracing/urgent: warn in case of ftrace_start_up inbalance
Prevent from further ftrace_start_up inbalances so that we avoid
future nop patching omissions with dynamic ftrace.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/trace/ftrace.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index bb60732ade0c..3718d55fb4c3 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
@@ -1224,6 +1224,13 @@ static void ftrace_shutdown(int command) | |||
1224 | return; | 1224 | return; |
1225 | 1225 | ||
1226 | ftrace_start_up--; | 1226 | ftrace_start_up--; |
1227 | /* | ||
1228 | * Just warn in case of unbalance, no need to kill ftrace, it's not | ||
1229 | * critical but the ftrace_call callers may be never nopped again after | ||
1230 | * further ftrace uses. | ||
1231 | */ | ||
1232 | WARN_ON_ONCE(ftrace_start_up < 0); | ||
1233 | |||
1227 | if (!ftrace_start_up) | 1234 | if (!ftrace_start_up) |
1228 | command |= FTRACE_DISABLE_CALLS; | 1235 | command |= FTRACE_DISABLE_CALLS; |
1229 | 1236 | ||