Re: [PATCH 2/7] ftrace, ppc: convert to new dynamic ftrace archAPI

From: Steven Rostedt
Date: Mon Nov 17 2008 - 10:47:45 EST



On Mon, 17 Nov 2008, Paul Mackerras wrote:

> Steven Rostedt writes:
>
> > +static int test_24bit_addr(unsigned long ip, unsigned long addr)
> > +{
> > + unsigned long diff;
> > +
> > + /* can we get to addr from ip in 24 bits? */
> > + diff = ip > addr ? ip - addr : addr - ip;
> > +
> > + return !(diff & ((unsigned long)-1 << 24));
>
> Since a branch instruction can reach +/- 32MB, the 24 needs to be 25.
> It's 25 not 26 since you have effectively accounted for one bit by
> taking the absolute value of the offset. Also, this will say that an
> offset of -0x2000000 is out of range whereas it is just in range.
> That probably doesn't matter unless you're relying on this to give
> exactly the same answer in all cases as tests done elsewhere (e.g. in
> module_64.c).

I'll update this to be correct.

>
> Note that the address difference being too large isn't the only reason
> for a procedure call to go via a trampoline on ppc64. A trampoline is
> also needed when the called function uses a different TOC from the
> caller. The most obvious example of this is when the caller is in a
> module and the callee is in the main kernel or another module.
>
> Currently all functions in the main kernel use the same TOC, but the
> linker is capable of dividing up a large executable into groups of
> functions and assigning a different TOC to each group, in order to
> avoid any of the TOCs getting too large (a TOC is limited to 64kB).
> If the linker does that, it automatically inserts trampolines to
> handle the TOC change.

OK, I'll deal with that at a another time. If this does happen in core
kernel code, it will produce a nice warning and nicely shutdown ftrace,
without causing any harm. Then I can deal with the bug report.

-- Steve


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/