All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org,
	Ananth N Mavinakayanahalli <ananth@in.ibm.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Christoph Hellwig <hch@infradead.org>,
	Dave Martin <dave.martin@linaro.org>,
	"David S . Miller" <davem@davemloft.net>,
	"Frank Ch. Eigler" <fche@redhat.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Jim Keniston <jkenisto@linux.vnet.ibm.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Mark Wielaard <mjw@redhat.com>,
	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
	Mike Galbraith <efault@gmx.de>,
	Naren A Devaiah <naren.devaiah@in.ibm.com>,
	Oleg Nesterov <oleg@redhat.com>,
	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Randy Dunlap <rdunlap@xenotime.net>,
	Srikar Dronamraju <srikar@linux.vnet.ibm.com>,
	Stephane Eranian <eranian@google.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Tom Zanussi <tzanussi@gmail.com>
Subject: Re: [PATCH 00/19] perf/core improvements and fixes
Date: Mon, 2 Aug 2010 08:26:15 +0200	[thread overview]
Message-ID: <20100802062615.GA2320@elte.hu> (raw)
In-Reply-To: <1280711334-30000-1-git-send-email-acme@infradead.org>


* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:

> Hi Ingo,
> 
>         Please pull from:
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf/core
> 
> Regards,
> 
> - Arnaldo
> 
> Arnaldo Carvalho de Melo (13):
>   perf hists: Mark entries filtered by parent
>   perf sort: Make column width code per hists instance
>   perf ui: Restore SPACE as an alias to PGDN in annotate
>   perf hist: Introduce routine to measure lenght of formatted entry
>   perf ui: Consider the refreshed dimensions in ui_browser__show
>   perf ui: Show the scroll bar over the left window frame
>   perf ui: New hists tree widget
>   perf man pages: Fix cut'n'paste error
>   perf record: Release resources at exit
>   perf symbols: Precisely specify if dso->{long,short}_name should be freed
>   perf tui: Make CTRL+Z suspend perf
>   perf tools: Release thread resources on PERF_RECORD_EXIT
>   perf tools: Release session and symbol resources on exit
> 
> Dave Martin (5):
>   perf report: Don't abbreviate file paths relative to the cwd
>   perf tools: Remove unneeded code for tracking the cwd in perf sessions
>   perf tools: Factor out buildid reading and make it implicit in dso__load
>   perf tools: remove extra build-id check factored into dso__load
>   perf symbols: Improve debug image search when loading symbols
> 
> Srikar Dronamraju (1):
>   perf probe: Rename common fields/functions from kprobe to probe.
> 
>  tools/perf/Documentation/perf-buildid-cache.txt |    8 +-
>  tools/perf/builtin-buildid-list.c               |    4 +-
>  tools/perf/builtin-diff.c                       |    2 -
>  tools/perf/builtin-probe.c                      |    1 -
>  tools/perf/builtin-record.c                     |   37 +-
>  tools/perf/builtin-report.c                     |    2 -
>  tools/perf/util/build-id.c                      |   18 +
>  tools/perf/util/event.c                         |   42 +-
>  tools/perf/util/hist.c                          |  160 +++-
>  tools/perf/util/hist.h                          |   30 +-
>  tools/perf/util/map.c                           |   81 ++-
>  tools/perf/util/map.h                           |    4 +-
>  tools/perf/util/newt.c                          |  991 ++++++++++++++++-------
>  tools/perf/util/probe-event.c                   |  135 ++--
>  tools/perf/util/probe-event.h                   |   27 +-
>  tools/perf/util/probe-finder.c                  |   34 +-
>  tools/perf/util/probe-finder.h                  |   10 +-
>  tools/perf/util/session.c                       |   48 +-
>  tools/perf/util/sort.c                          |   17 +-
>  tools/perf/util/sort.h                          |   18 +-
>  tools/perf/util/symbol.c                        |  219 +++---
>  tools/perf/util/symbol.h                        |   10 +-
>  tools/perf/util/thread.c                        |    7 +
>  tools/perf/util/thread.h                        |    2 +
>  24 files changed, 1253 insertions(+), 654 deletions(-)

Pulled, thanks a lot Arnaldo!

	Ingo

      parent reply	other threads:[~2010-08-02  6:26 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1280711334-30000-1-git-send-email-acme@infradead.org>
2010-08-02  1:08 ` [PATCH 01/19] perf hists: Mark entries filtered by parent Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 02/19] perf sort: Make column width code per hists instance Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 03/19] perf ui: Restore SPACE as an alias to PGDN in annotate Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 04/19] perf hist: Introduce routine to measure lenght of formatted entry Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 05/19] perf ui: Consider the refreshed dimensions in ui_browser__show Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 06/19] perf ui: Show the scroll bar over the left window frame Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 07/19] perf ui: New hists tree widget Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 08/19] perf report: Don't abbreviate file paths relative to the cwd Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 09/19] perf tools: Remove unneeded code for tracking the cwd in perf sessions Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 10/19] perf man pages: Fix cut'n'paste error Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 11/19] perf record: Release resources at exit Arnaldo Carvalho de Melo
2010-08-02  7:30   ` Nick Piggin
2010-08-02  7:54     ` Ingo Molnar
2010-08-02  8:03       ` Nick Piggin
2010-08-02  9:17         ` Ingo Molnar
2010-08-02  9:59           ` Nick Piggin
2010-08-02 14:49             ` Arnaldo Carvalho de Melo
2010-08-02  8:08   ` Pekka Enberg
2010-08-02  1:08 ` [PATCH 12/19] perf symbols: Precisely specify if dso->{long,short}_name should be freed Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 13/19] perf tools: Factor out buildid reading and make it implicit in dso__load Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 14/19] perf tools: remove extra build-id check factored into dso__load Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 15/19] perf symbols: Improve debug image search when loading symbols Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 16/19] perf tui: Make CTRL+Z suspend perf Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 17/19] perf probe: Rename common fields/functions from kprobe to probe Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 18/19] perf tools: Release thread resources on PERF_RECORD_EXIT Arnaldo Carvalho de Melo
2010-08-02  1:08 ` [PATCH 19/19] perf tools: Release session and symbol resources on exit Arnaldo Carvalho de Melo
2010-08-02  6:26 ` Ingo Molnar [this message]

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=20100802062615.GA2320@elte.hu \
    --to=mingo@elte.hu \
    --cc=acme@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=ananth@in.ibm.com \
    --cc=dave.martin@linaro.org \
    --cc=davem@davemloft.net \
    --cc=efault@gmx.de \
    --cc=eranian@google.com \
    --cc=fche@redhat.com \
    --cc=fweisbec@gmail.com \
    --cc=hch@infradead.org \
    --cc=jkenisto@linux.vnet.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=mjw@redhat.com \
    --cc=naren.devaiah@in.ibm.com \
    --cc=oleg@redhat.com \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.org \
    --cc=rdunlap@xenotime.net \
    --cc=rostedt@goodmis.org \
    --cc=srikar@linux.vnet.ibm.com \
    --cc=torvalds@linux-foundation.org \
    --cc=tzanussi@gmail.com \
    /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 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.