All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] ftrace: adding other non-leaving .text sections
@ 2008-11-26  2:29 Liming Wang
  2008-11-26  2:49 ` Ingo Molnar
  2008-11-26  3:03 ` Steven Rostedt
  0 siblings, 2 replies; 8+ messages in thread
From: Liming Wang @ 2008-11-26  2:29 UTC (permalink / raw)
  To: Steven Rostedt, Ingo Molnar; +Cc: linux-kernel, Liming Wang

Please review this patch, and I don't know whether new sections will conflict 
with sched tracer or others. 
This patch is against Steven tree's tip/devel latest commit.

Impact: improve 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>
---
 scripts/recordmcount.pl |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 0197e2f..0b1dc9f 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);
-- 
1.6.0.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-11-26  3:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-26  2:29 [PATCH 1/1] ftrace: adding other non-leaving .text sections Liming Wang
2008-11-26  2:49 ` Ingo Molnar
2008-11-26  3:03 ` Steven Rostedt
2008-11-26  3:04   ` Paul Mundt
2008-11-26  3:14     ` walimis
2008-11-26  3:18       ` Paul Mundt
2008-11-26  3:24         ` walimis
2008-11-26  3:20     ` Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.