aboutsummaryrefslogtreecommitdiff
path: root/scripts/recordmcount.pl
diff options
context:
space:
mode:
authorGravatar Liming Wang <liming.wang@windriver.com> 2008-11-26 10:29:26 +0800
committerGravatar Ingo Molnar <mingo@elte.hu> 2008-11-26 03:48:37 +0100
commitd144d5ee6a265823d39f75ecfed351a516295183 (patch)
tree7bdf055ed89ceccf1a4a31a85aab8d7ef5dc40ea /scripts/recordmcount.pl
parentMerge branches 'tracing/hw-branch-tracing' and 'tracing/branch-tracer' into t... (diff)
downloadlinux-d144d5ee6a265823d39f75ecfed351a516295183.tar.gz
linux-d144d5ee6a265823d39f75ecfed351a516295183.tar.bz2
linux-d144d5ee6a265823d39f75ecfed351a516295183.zip
ftrace: adding other non-leaving .text sections
Impact: widen the scope of recordmcount.pl Besides .text section, there are three .text sections that won't be freed after kernel booting. They are: .sched.text, .spinlock.text and .kprobes.text, which contain functions we can trace. But the last section ".kprobes.text" is particular, which has been marked as "notrace", we ignore it. Thus we add other two sections. Signed-off-by: Liming Wang <liming.wang@windriver.com> Acked-by: Steven Rostedt <rostedt@goodmis.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'scripts/recordmcount.pl')
-rwxr-xr-xscripts/recordmcount.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 0197e2f6b544..0b1dc9f9bb06 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -112,6 +112,8 @@ my ($arch, $bits, $objdump, $objcopy, $cc,
# Acceptable sections to record.
my %text_sections = (
".text" => 1,
+ ".sched.text" => 1,
+ ".spinlock.text" => 1,
);
$objdump = "objdump" if ((length $objdump) == 0);