* [patch 8/9] x86, ftrace: call trace->open() before stopping tracing; add trace->print_header()
@ 2008-11-25 8:12 Markus Metzger
2008-11-25 8:55 ` Frédéric Weisbecker
0 siblings, 1 reply; 2+ messages in thread
From: Markus Metzger @ 2008-11-25 8:12 UTC (permalink / raw)
To: hpa, linux-kernel, mingo, tglx
Cc: markus.t.metzger, markus.t.metzger, roland, akpm, mtk.manpages,
eranian, juan.villacis
Add a callback to allow an ftrace plug-in to write its own header.
Move the call to trace->open() up a few lines.
The changes are required by the BTS ftrace plug-in.
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
---
Index: ftrace/kernel/trace/trace.c
===================================================================
--- ftrace.orig/kernel/trace/trace.c 2008-11-24 13:46:26.000000000 +0100
+++ ftrace/kernel/trace/trace.c 2008-11-25 08:18:05.000000000 +0100
@@ -2298,7 +2298,9 @@
seq_printf(m, "# tracer: %s\n", iter->trace->name);
seq_puts(m, "#\n");
}
- if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
+ if (iter->trace && iter->trace->print_header)
+ iter->trace->print_header(m);
+ else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
/* print nothing if the buffers are empty */
if (trace_empty(iter))
return 0;
@@ -2350,6 +2352,10 @@
iter->trace = current_trace;
iter->pos = -1;
+ /* Notify the tracer early; before we stop tracing. */
+ if (iter->trace && iter->trace->open)
+ iter->trace->open(iter);
+
/* Annotate start of buffers if we had overruns */
if (ring_buffer_overruns(iter->tr->buffer))
iter->iter_flags |= TRACE_FILE_ANNOTATE;
@@ -2375,9 +2381,6 @@
/* stop the trace while dumping */
tracing_stop();
- if (iter->trace && iter->trace->open)
- iter->trace->open(iter);
-
mutex_unlock(&trace_types_lock);
out:
Index: ftrace/kernel/trace/trace.h
===================================================================
--- ftrace.orig/kernel/trace/trace.h 2008-11-24 13:46:26.000000000 +0100
+++ ftrace/kernel/trace/trace.h 2008-11-25 08:18:05.000000000 +0100
@@ -311,6 +311,7 @@
int (*selftest)(struct tracer *trace,
struct trace_array *tr);
#endif
+ void (*print_header)(struct seq_file *m);
enum print_line_t (*print_line)(struct trace_iterator *iter);
/* If you handled the flag setting, return 0 */
int (*set_flag)(u32 old_flags, u32 bit, int set);
---------------------------------------------------------------------
Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen Germany
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
Registergericht: Muenchen HRB 47456 Ust.-IdNr.
VAT Registration No.: DE129385895
Citibank Frankfurt (BLZ 502 109 00) 600119052
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch 8/9] x86, ftrace: call trace->open() before stopping tracing; add trace->print_header()
2008-11-25 8:12 [patch 8/9] x86, ftrace: call trace->open() before stopping tracing; add trace->print_header() Markus Metzger
@ 2008-11-25 8:55 ` Frédéric Weisbecker
0 siblings, 0 replies; 2+ messages in thread
From: Frédéric Weisbecker @ 2008-11-25 8:55 UTC (permalink / raw)
To: Markus Metzger
Cc: hpa, linux-kernel, mingo, tglx, markus.t.metzger, roland, akpm,
mtk.manpages, eranian, juan.villacis
2008/11/25 Markus Metzger <markus.t.metzger@intel.com>:
> Add a callback to allow an ftrace plug-in to write its own header.
That's a good idea IMHO. The trace file has always the same header
which fits the needs of function
tracer for example, but these headers are wrong for other tracers. And
be able to set custom header
for each one will help for new users of a tracer.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-11-25 8:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-25 8:12 [patch 8/9] x86, ftrace: call trace->open() before stopping tracing; add trace->print_header() Markus Metzger
2008-11-25 8:55 ` Frédéric Weisbecker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®