From: Steven Rostedt Date: Wed, 13 Apr 2011 20:43:29 +0000 (-0400) Subject: ftrace/x86: Do not trace .discard.text section X-Git-Tag: v3.12-rc1~6123^2~6^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2895cd2ab81dfb7bc22637bc110857db44a30b4a;p=kernel%2Fkernel-generic.git ftrace/x86: Do not trace .discard.text section The section called .discard.text has tracing attached to it and is currently ignored by ftrace. But it does include a call to the mcount stub. Adding a notrace to the code keeps gcc from adding the useless mcount caller to it. Link: http://lkml.kernel.org/r/20110421023739.243651696@goodmis.org Signed-off-by: Steven Rostedt --- diff --git a/arch/x86/include/asm/setup.h b/arch/x86/include/asm/setup.h index db8aa19..647d8a0 100644 --- a/arch/x86/include/asm/setup.h +++ b/arch/x86/include/asm/setup.h @@ -88,7 +88,7 @@ void *extend_brk(size_t size, size_t align); * executable.) */ #define RESERVE_BRK(name,sz) \ - static void __section(.discard.text) __used \ + static void __section(.discard.text) __used notrace \ __brk_reservation_fn_##name##__(void) { \ asm volatile ( \ ".pushsection .brk_reservation,\"aw\",@nobits;" \