From: Steven Rostedt Date: Wed, 6 Apr 2011 18:10:22 +0000 (-0400) Subject: ftrace: Add .kprobe.text section to whitelist for recordmcount.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9f087e7612115b7a201d4f3392a95ac7408948ab;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git ftrace: Add .kprobe.text section to whitelist for recordmcount.c The .kprobe.text section is safe to modify mcount to nop and tracing. Add it to the whitelist in recordmcount.c and recordmcount.pl. Cc: John Reiser Cc: Masami Hiramatsu Link: http://lkml.kernel.org/r/20110421023737.743350547@goodmis.org Signed-off-by: Steven Rostedt --- diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c index 4ebd8399cb3..37c59654c13 100644 --- a/scripts/recordmcount.c +++ b/scripts/recordmcount.c @@ -211,6 +211,7 @@ is_mcounted_section_name(char const *const txtname) strcmp(".sched.text", txtname) == 0 || strcmp(".spinlock.text", txtname) == 0 || strcmp(".irqentry.text", txtname) == 0 || + strcmp(".kprobes.text", txtname) == 0 || strcmp(".text.unlikely", txtname) == 0; } diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 4be0deea71c..a871cd41405 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl @@ -134,6 +134,7 @@ my %text_sections = ( ".sched.text" => 1, ".spinlock.text" => 1, ".irqentry.text" => 1, + ".kprobes.text" => 1, ".text.unlikely" => 1, );