[PATCH] tracing: fix DEBUG_PREEMPT typo

From: Valentin Rothberg
Date: Thu Apr 13 2017 - 10:31:52 EST


s/PREEMPT_DEBUG/DEBUG_PREEMPT/

Signed-off-by: Valentin Rothberg <valentinrothberg@xxxxxxxxx>
---
include/linux/ftrace.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index c4552953a59a..e1bbfbb741a5 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -304,7 +304,7 @@ DECLARE_PER_CPU(int, disable_stack_tracer);
static inline void stack_tracer_disable(void)
{
/* Preemption or interupts must be disabled */
- if (IS_ENABLED(CONFIG_PREEMPT_DEBUG))
+ if (IS_ENABLED(CONFIG_DEBUG_PREEMPT))
WARN_ON_ONCE(!preempt_count() || !irqs_disabled());
this_cpu_inc(disable_stack_tracer);
}
@@ -317,7 +317,7 @@ static inline void stack_tracer_disable(void)
*/
static inline void stack_tracer_enable(void)
{
- if (IS_ENABLED(CONFIG_PREEMPT_DEBUG))
+ if (IS_ENABLED(CONFIG_DEBUG_PREEMPT))
WARN_ON_ONCE(!preempt_count() || !irqs_disabled());
this_cpu_dec(disable_stack_tracer);
}
--
2.12.2