]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ftrace: remove address of function names
authorSteven Rostedt <srostedt@redhat.com>
Mon, 12 May 2008 19:20:50 +0000 (21:20 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 23 May 2008 18:56:31 +0000 (20:56 +0200)
PowerPC is very fragile when it comes to use of function names
and function addresses.  ftrace needs to either use all function
addresses or function names (i.e. my_func as suppose to &my_func).

This patch chooses to use the names and not the addresses, and
makes ftrace consistent.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/trace/ftrace.c

index 425b1fec3d835e4896305935bae9372eb9eaf454..57350cbd1f61e68b712361dc95b1bfb08e4f91d3 100644 (file)
@@ -326,8 +326,8 @@ ftrace_record_ip(unsigned long ip)
                preempt_enable_notrace();
 }
 
-#define FTRACE_ADDR ((long)(&ftrace_caller))
-#define MCOUNT_ADDR ((long)(&mcount))
+#define FTRACE_ADDR ((long)(ftrace_caller))
+#define MCOUNT_ADDR ((long)(mcount))
 
 static void notrace
 __ftrace_replace_code(struct dyn_ftrace *rec,