linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 4/5] x86, ftrace, hw-branch-tracer: reset trace on close
@ 2009-01-16 11:01 Markus Metzger
  2009-01-16 15:01 ` Steven Rostedt
  0 siblings, 1 reply; 3+ messages in thread
From: Markus Metzger @ 2009-01-16 11:01 UTC (permalink / raw)
  To: linux-kernel, mingo, tglx, hpa
  Cc: markus.t.metzger, markus.t.metzger, srostedt

Reset the ftrace buffer on close. Since we use cyclic buffers to store
the trace, the trace is not contiguous, anyway. This behaviour should
be more natural.

Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
---

Index: ftrace/kernel/trace/trace_hw_branches.c
===================================================================
--- ftrace.orig/kernel/trace/trace_hw_branches.c	2009-01-14 15:26:11.000000000 +0100
+++ ftrace/kernel/trace/trace_hw_branches.c	2009-01-14 15:26:16.000000000 +0100
@@ -272,6 +272,11 @@
 	mutex_unlock(&bts_tracer_mutex);
 }
 
+static void trace_bts_close(struct trace_iterator *iter)
+{
+	tracing_reset_online_cpus(iter->tr);
+}
+
 void trace_hw_branch_oops(void)
 {
 	mutex_lock(&bts_tracer_mutex);
@@ -290,7 +295,8 @@
 	.print_line	= bts_trace_print_line,
 	.start		= bts_trace_start,
 	.stop		= bts_trace_stop,
-	.open		= trace_bts_prepare
+	.open		= trace_bts_prepare,
+	.close		= trace_bts_close
 };
 
 __init static int init_bts_trace(void)
---------------------------------------------------------------------
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] 3+ messages in thread

* Re: [patch 4/5] x86, ftrace, hw-branch-tracer: reset trace on close
  2009-01-16 11:01 [patch 4/5] x86, ftrace, hw-branch-tracer: reset trace on close Markus Metzger
@ 2009-01-16 15:01 ` Steven Rostedt
  2009-01-16 16:19   ` Metzger, Markus T
  0 siblings, 1 reply; 3+ messages in thread
From: Steven Rostedt @ 2009-01-16 15:01 UTC (permalink / raw)
  To: Markus Metzger; +Cc: linux-kernel, mingo, tglx, hpa, markus.t.metzger


On Fri, 2009-01-16 at 12:01 +0100, Markus Metzger wrote:
> Reset the ftrace buffer on close. Since we use cyclic buffers to store
> the trace, the trace is not contiguous, anyway. This behaviour should
> be more natural.

So you want multiple reads of /debug/tracing/trace to return different
output? Kind of like the trace_pipe? But trace_pipe is a real consumer.

> 
> Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
> ---
> 
> Index: ftrace/kernel/trace/trace_hw_branches.c
> ===================================================================
> --- ftrace.orig/kernel/trace/trace_hw_branches.c	2009-01-14 15:26:11.000000000 +0100
> +++ ftrace/kernel/trace/trace_hw_branches.c	2009-01-14 15:26:16.000000000 +0100
> @@ -272,6 +272,11 @@
>  	mutex_unlock(&bts_tracer_mutex);
>  }
>  
> +static void trace_bts_close(struct trace_iterator *iter)
> +{
> +	tracing_reset_online_cpus(iter->tr);
> +}
> +
>  void trace_hw_branch_oops(void)
>  {
>  	mutex_lock(&bts_tracer_mutex);
> @@ -290,7 +295,8 @@

BTW, can you run your diff with the -p option. This will help in knowing
which function the change is in. There's some hunks where it is
ambiguous. If you use quilt, you can add:

  QUILT_DIFF_OPTS='-p'

to you .quiltrc file.

-- Steve



>  	.print_line	= bts_trace_print_line,
>  	.start		= bts_trace_start,
>  	.stop		= bts_trace_stop,
> -	.open		= trace_bts_prepare
> +	.open		= trace_bts_prepare,
> +	.close		= trace_bts_close
>  };
>  
>  __init static int init_bts_trace(void)
> ---------------------------------------------------------------------
> 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] 3+ messages in thread

* RE: [patch 4/5] x86, ftrace, hw-branch-tracer: reset trace on close
  2009-01-16 15:01 ` Steven Rostedt
@ 2009-01-16 16:19   ` Metzger, Markus T
  0 siblings, 0 replies; 3+ messages in thread
From: Metzger, Markus T @ 2009-01-16 16:19 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel, mingo, tglx, hpa, markus.t.metzger

>-----Original Message-----
>From: Steven Rostedt [mailto:srostedt@redhat.com]
>Sent: Friday, January 16, 2009 4:02 PM
>To: Metzger, Markus T

>On Fri, 2009-01-16 at 12:01 +0100, Markus Metzger wrote:
>> Reset the ftrace buffer on close. Since we use cyclic buffers to store
>> the trace, the trace is not contiguous, anyway. This behaviour should
>> be more natural.
>
>So you want multiple reads of /debug/tracing/trace to return different
>output? Kind of like the trace_pipe? But trace_pipe is a real consumer.

Yes.
The trace chunks are not contiguous (in this version), so it does not make sense to append them.
I don't expect trace_pipe to work with the hw-branch-tracer.


>BTW, can you run your diff with the -p option. This will help in knowing
>which function the change is in. There's some hunks where it is
>ambiguous. If you use quilt, you can add:
>
>  QUILT_DIFF_OPTS='-p'
>
>to you .quiltrc file.

Thanks.

markus.
---------------------------------------------------------------------
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] 3+ messages in thread

end of thread, other threads:[~2009-01-16 16:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-16 11:01 [patch 4/5] x86, ftrace, hw-branch-tracer: reset trace on close Markus Metzger
2009-01-16 15:01 ` Steven Rostedt
2009-01-16 16:19   ` Metzger, Markus T

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).