aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/ftrace.h1
-rw-r--r--kernel/trace/ftrace.c15
2 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index 3121b95443d9..f368d041e02d 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -89,6 +89,7 @@ void ftrace_enable_daemon(void);
89 89
90/* totally disable ftrace - can not re-enable after this */ 90/* totally disable ftrace - can not re-enable after this */
91void ftrace_kill(void); 91void ftrace_kill(void);
92void ftrace_kill_atomic(void);
92 93
93static inline void tracer_disable(void) 94static inline void tracer_disable(void)
94{ 95{
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 0f271c45cd02..1359632668a4 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -1602,6 +1602,21 @@ core_initcall(ftrace_dynamic_init);
1602#endif /* CONFIG_DYNAMIC_FTRACE */ 1602#endif /* CONFIG_DYNAMIC_FTRACE */
1603 1603
1604/** 1604/**
1605 * ftrace_kill_atomic - kill ftrace from critical sections
1606 *
1607 * This function should be used by panic code. It stops ftrace
1608 * but in a not so nice way. If you need to simply kill ftrace
1609 * from a non-atomic section, use ftrace_kill.
1610 */
1611void ftrace_kill_atomic(void)
1612{
1613 ftrace_disabled = 1;
1614 ftrace_enabled = 0;
1615 ftraced_suspend = -1;
1616 clear_ftrace_function();
1617}
1618
1619/**
1605 * ftrace_kill - totally shutdown ftrace 1620 * ftrace_kill - totally shutdown ftrace
1606 * 1621 *
1607 * This is a safety measure. If something was detected that seems 1622 * This is a safety measure. If something was detected that seems