Skip to content

Commit

Permalink
sh: Fix the value of MCOUNT_INSN_OFFSET
Browse files Browse the repository at this point in the history
It seems that MCOUNT_INSN_OFFSET was calculating the distance between
the wrong functions. The value that should have actually been computed
is the distance between ftrace_call and ftrace_stub. I discovered this
when I added some code to ftrace_caller.

Signed-off-by: Matt Fleming <matt@console-pimps.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Matt Fleming authored and Paul Mundt committed Jul 6, 2009
1 parent 8e4a718 commit ca0d172
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/sh/include/asm/ftrace.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ extern void mcount(void);
#define MCOUNT_ADDR ((long)(mcount))

#ifdef CONFIG_DYNAMIC_FTRACE
#define CALLER_ADDR ((long)(ftrace_caller))
#define CALL_ADDR ((long)(ftrace_call))
#define STUB_ADDR ((long)(ftrace_stub))

#define MCOUNT_INSN_OFFSET ((STUB_ADDR - CALLER_ADDR) >> 1)
#define MCOUNT_INSN_OFFSET ((STUB_ADDR - CALL_ADDR) - 4)

struct dyn_arch_ftrace {
/* No extra data needed on sh */
Expand Down

0 comments on commit ca0d172

Please sign in to comment.