tracing: function return tracer, build fix
authorIngo Molnar <mingo@elte.hu>
Tue, 11 Nov 2008 10:57:02 +0000 (11:57 +0100)
committerIngo Molnar <mingo@elte.hu>
Tue, 11 Nov 2008 11:03:27 +0000 (12:03 +0100)
fix:

 arch/x86/kernel/ftrace.c: In function 'ftrace_return_to_handler':
 arch/x86/kernel/ftrace.c:112: error: implicit declaration of function 'cpu_clock'

cpu_clock() is implicitly included via a number of ways, but its real
location is sched.h. (Build failure is triggerable if enough other
kernel components are turned off.)

Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/ftrace.c

index 9b2325a..16a571d 100644 (file)
@@ -14,6 +14,7 @@
 #include <linux/uaccess.h>
 #include <linux/ftrace.h>
 #include <linux/percpu.h>
+#include <linux/sched.h>
 #include <linux/init.h>
 #include <linux/list.h>