diff options
author | Steven Rostedt <srostedt@redhat.com> | 2008-05-12 21:20:48 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-23 20:54:16 +0200 |
commit | 4eebcc81a33fbc45e28542b50197ed7b3c486d90 (patch) | |
tree | 13bbad50aa8d4dc36d630ef08886876f4dc0b6eb /include/linux/ftrace.h | |
parent | 37ad508419f0fdfda7b378756eb1f35cfd26d96d (diff) | |
download | linux-stable-4eebcc81a33fbc45e28542b50197ed7b3c486d90.tar.gz linux-stable-4eebcc81a33fbc45e28542b50197ed7b3c486d90.tar.bz2 linux-stable-4eebcc81a33fbc45e28542b50197ed7b3c486d90.zip |
ftrace: disable tracing on failure
Since ftrace touches practically every function. If we detect any
anomaly, we want to fully disable ftrace. This patch adds code
to try shutdown ftrace as much as possible without doing any more
harm is something is detected not quite correct.
This only kills ftrace, this patch does have checks for other parts of
the tracer (irqsoff, wakeup, etc.).
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r-- | include/linux/ftrace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 61e757bd2350..4650a3160b7f 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h @@ -58,6 +58,9 @@ struct dyn_ftrace { int ftrace_force_update(void); void ftrace_set_filter(unsigned char *buf, int len, int reset); +/* totally disable ftrace - can not re-enable after this */ +void ftrace_kill(void); + /* defined in arch */ extern int ftrace_ip_converted(unsigned long ip); extern unsigned char *ftrace_nop_replace(void); |