public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-kernel@vger.kernel.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Subject: Re: [PATCH 00/16 v2] [GIT PULL] tracing: various fixes
Date: Fri, 1 Jul 2011 14:44:55 +0200	[thread overview]
Message-ID: <20110701124455.GD12605@elte.hu> (raw)
In-Reply-To: <1309290496.26417.16.camel@gandalf.stny.rr.com>


* Steven Rostedt <rostedt@goodmis.org> wrote:

> On Thu, 2011-06-16 at 16:00 +0200, Ingo Molnar wrote:
> > * Steven Rostedt <rostedt@goodmis.org> wrote:
> > 
> > > Ingo,
> > > 
> > > I went through the patches and addressed your comments. I fixed the line
> > > break issues (no need to have the original author resubmit for whitespace
> > > clean ups), and I fixed the change logs that had the whacky tags caused
> > > by my script.
> > > 
> > > I replaced the one patch by Vaibhav that added the ioctl with the original
> > > patch he sent that adds the free_buffer file to do the same thing. I also
> > > added a patch to make it optional whether or not freeing the buffer disables
> > > tracing.
> > > 
> > > Please pull the latest tip/perf/core-2 tree, which can be found at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace.git
> > > tip/perf/core-2
> > > 
> > > Head SHA1: 1fd8df2c3970c9e7e4e262354154ee39e58bdd7c
> > > 
> > > 
> > > Jiri Olsa (5):
> > >       tracing, function_graph: Remove dependency of abstime and duration fields on latency
> > >       tracing, function_graph: Merge overhead and duration display functions
> > >       tracing, function: Fix trace header to follow context-info option
> > >       tracing, function_graph: Remove lock-depth from latency trace
> > >       tracing, function_graph: Add context-info support for function_graph tracer
> > > 
> > > Masami Hiramatsu (3):
> > >       x86: Swap save_stack_trace_regs parameters
> > >       stack_trace: Add weak save_stack_trace_regs()
> > >       tracing/kprobes: Fix kprobe-tracer to support stack trace
> > > 
> > > Paul McQuade (2):
> > >       ftrace: Fixed an include coding style issue
> > >       async: Fixed an include coding style issue
> > > 
> > > Peter Huewe (1):
> > >       tracing: Convert to kstrtoul_from_user
> > > 
> > > Steven Rostedt (1):
> > >       tracing: Add disable_on_free option
> > > 
> > > Vaibhav Nagarnaik (4):
> > >       tracing: Schedule a delayed work to call wakeup()
> > >       tracing: Use NUMA allocation for per-cpu ring buffer pages
> > >       tracing: Add a proc file to stop tracing and free buffer
> > >       ring-buffer: Set __GFP_NORETRY flag for ring buffer allocating process
> > > 
> > > ----
> > >  arch/x86/kernel/stacktrace.c         |    2 +-
> > >  arch/x86/mm/kmemcheck/error.c        |    2 +-
> > >  include/linux/ftrace_event.h         |    4 +
> > >  include/linux/ring_buffer.h          |    2 +-
> > >  include/linux/stacktrace.h           |    4 +-
> > >  kernel/async.c                       |   12 +-
> > >  kernel/stacktrace.c                  |   12 ++-
> > >  kernel/trace/ftrace.c                |   20 +---
> > >  kernel/trace/ring_buffer.c           |   66 +++++----
> > >  kernel/trace/ring_buffer_benchmark.c |    2 +-
> > >  kernel/trace/trace.c                 |  242 ++++++++++++++++++---------------
> > >  kernel/trace/trace.h                 |   10 ++
> > >  kernel/trace/trace_events.c          |   26 +---
> > >  kernel/trace/trace_functions_graph.c |  223 +++++++++++++++----------------
> > >  kernel/trace/trace_irqsoff.c         |    4 +-
> > >  kernel/trace/trace_kprobe.c          |    6 +-
> > >  kernel/trace/trace_sched_wakeup.c    |    4 +-
> > >  kernel/trace/trace_stack.c           |   13 +--
> > >  18 files changed, 333 insertions(+), 321 deletions(-)
> > 
> > Pulled, thanks a lot Steve!
> > 
> 
> Hi Ingo,
> 
> Was there an issue with this pull request? I don't see it in tip. I 
> was about to add a fix for Thomas and noticed that this pull wasn't 
> in.

Hm, the problem appears to be that your tip/perf/core-2 branch is on 
0ef5bf1cd3bd - which does not match the bits you advertised in:

    Head SHA1: 1fd8df2c3970c9e7e4e262354154ee39e58bdd7c

Thanks,

	Ingo

  reply	other threads:[~2011-07-01 12:45 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-15 13:48 [PATCH 00/16 v2] [GIT PULL] tracing: various fixes Steven Rostedt
2011-06-15 13:48 ` [PATCH 01/16 v2] tracing: Schedule a delayed work to call wakeup() Steven Rostedt
2011-06-15 13:48 ` [PATCH 02/16 v2] tracing: Use NUMA allocation for per-cpu ring buffer pages Steven Rostedt
2011-06-15 13:48 ` [PATCH 03/16 v2] tracing: Add a proc file to stop tracing and free buffer Steven Rostedt
2011-06-15 14:25   ` Frederic Weisbecker
2011-06-15 14:43     ` Steven Rostedt
2011-06-15 14:45       ` Frederic Weisbecker
2011-06-15 13:48 ` [PATCH 04/16 v2] tracing: Add disable_on_free option Steven Rostedt
2011-06-15 13:48 ` [PATCH 05/16 v2] ftrace: Fixed an include coding style issue Steven Rostedt
2011-06-15 13:48 ` [PATCH 06/16 v2] async: " Steven Rostedt
2011-06-15 13:48 ` [PATCH 07/16 v2] tracing, function_graph: Remove dependency of abstime and duration Steven Rostedt
2011-06-15 13:48 ` [PATCH 08/16 v2] tracing, function_graph: Merge overhead and duration display Steven Rostedt
2011-06-15 13:48 ` [PATCH 09/16 v2] tracing, function: Fix trace header to follow context-info option Steven Rostedt
2011-06-15 13:48 ` [PATCH 10/16 v2] tracing, function_graph: Remove lock-depth from latency trace Steven Rostedt
2011-06-15 13:48 ` [PATCH 11/16 v2] tracing, function_graph: Add context-info support for function_graph Steven Rostedt
2011-06-15 13:48 ` [PATCH 12/16 v2] tracing: Convert to kstrtoul_from_user Steven Rostedt
2011-06-15 13:48 ` [PATCH 13/16 v2] ring-buffer: Set __GFP_NORETRY flag for ring buffer allocating Steven Rostedt
2011-06-15 13:48 ` [PATCH 14/16 v2] x86: Swap save_stack_trace_regs parameters Steven Rostedt
2011-06-15 13:48 ` [PATCH 15/16 v2] stack_trace: Add weak save_stack_trace_regs() Steven Rostedt
2011-06-15 13:48 ` [PATCH 16/16 v2] tracing/kprobes: Fix kprobe-tracer to support stack trace Steven Rostedt
2011-06-16 14:00 ` [PATCH 00/16 v2] [GIT PULL] tracing: various fixes Ingo Molnar
2011-06-28 19:48   ` Steven Rostedt
2011-07-01 12:44     ` Ingo Molnar [this message]
2011-07-01 13:11       ` Steven Rostedt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110701124455.GD12605@elte.hu \
    --to=mingo@elte.hu \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox