diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2008-12-09 17:53:16 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-12 05:14:07 -0500 |
commit | a0343e823184070f55364d8359f832dcb33c57c7 (patch) | |
tree | 9ec950c5881e244a741f21f0c3ab262fbae0f0fb /scripts | |
parent | f3134de60624829a57741c1f3796847d4de165f6 (diff) |
tracing/function-graph-tracer: add a new .irqentry.text section
Impact: let the function-graph-tracer be aware of the irq entrypoints
Add a new .irqentry.text section to store the irq entrypoints functions
inside the same section. This way, the tracer will be able to signal
an interrupts triggering on output by recognizing these entrypoints.
Also, make this section recordable for dynamic tracing.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/recordmcount.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 0b1dc9f9bb06..fe831412bea9 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl | |||
@@ -114,6 +114,7 @@ my %text_sections = ( | |||
114 | ".text" => 1, | 114 | ".text" => 1, |
115 | ".sched.text" => 1, | 115 | ".sched.text" => 1, |
116 | ".spinlock.text" => 1, | 116 | ".spinlock.text" => 1, |
117 | ".irqentry.text" => 1, | ||
117 | ); | 118 | ); |
118 | 119 | ||
119 | $objdump = "objdump" if ((length $objdump) == 0); | 120 | $objdump = "objdump" if ((length $objdump) == 0); |