Re: [PATCH -v6 05/13] tracing: enableHAVE_FUNCTION_TRACE_MCOUNT_TEST for MIPS

From: Wu Zhangjin
Date: Mon Oct 26 2009 - 12:16:41 EST


On Mon, 2009-10-26 at 18:41 +0300, Sergei Shtylyov wrote:
> Hello.
>
> Wu Zhangjin wrote:
>
> > There is an exisiting common ftrace_test_stop_func() in
> > kernel/trace/ftrace.c, which is used to check the global variable
> > ftrace_trace_stop to determine whether stop the function tracing.
>
> > This patch implepment the MIPS specific one to speedup the procedure.
>
> > Thanks goes to Zhang Le for Cleaning it up.
>
> > Signed-off-by: Wu Zhangjin <wuzhangjin@xxxxxxxxx>
>
> [...]
>
> > diff --git a/arch/mips/kernel/mcount.S b/arch/mips/kernel/mcount.S
> > index 0c39bc8..5dfaca8 100644
> > --- a/arch/mips/kernel/mcount.S
> > +++ b/arch/mips/kernel/mcount.S
> > @@ -64,6 +64,10 @@
> > .endm
> >
> > NESTED(_mcount, PT_SIZE, ra)
> > + lw t0, function_trace_stop
> > + bnez t0, ftrace_stub
> > + nop
>
> 1) unless .set noreorder is specified in this file, explicit nop is not needed;
>
> 2) delay slot instruction is usually denoted by adding extra space on its
> left, like this:
>
> bnez t0, ftrace_stub
> nop
>

Okay, Will add an extra space for them later, thanks!

Regards,
Wu Zhangjin

--
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/