]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ftrace/x86: Use asm/kprobes.h instead of linux/kprobes.h
authorSteven Rostedt <srostedt@redhat.com>
Fri, 4 May 2012 13:26:16 +0000 (09:26 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Fri, 4 May 2012 13:28:29 +0000 (09:28 -0400)
If CONFIG_KPROBES is not set, then linux/kprobes.h will not include
asm/kprobes.h needed by x86/ftrace.c for the BREAKPOINT macro.

The x86/ftrace.c file should just include asm/kprobes.h as it does not
need the rest of kprobes.

Reported-by: Ingo Molnar <mingo@elte.hu>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
arch/x86/kernel/ftrace.c

index cf2d03ec179365926d51a4770782606b71b071ba..4243e8bbdcb1b9f836f0a2927f2403ded6417019 100644 (file)
 #include <linux/init.h>
 #include <linux/list.h>
 #include <linux/module.h>
-#include <linux/kprobes.h>
 
 #include <trace/syscall.h>
 
 #include <asm/cacheflush.h>
+#include <asm/kprobes.h>
 #include <asm/ftrace.h>
 #include <asm/nops.h>