From: Ingo Molnar <mingo@elte.hu>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org, David Ahern <daahern@cisco.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Mike Galbraith <efault@gmx.de>, Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>,
Thomas Gleixner <tglx@linutronix.de>,
Tom Zanussi <tzanussi@gmail.com>,
Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Subject: Re: [GIT PULL 00/12] perf/core improvements, fixes and cleanups
Date: Wed, 16 Mar 2011 13:53:17 +0100 [thread overview]
Message-ID: <20110316125317.GA3320@elte.hu> (raw)
In-Reply-To: <1300219501-15085-1-git-send-email-acme@infradead.org>
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:
> Hi Ingo,
>
> Please consider pulling from:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf/core
>
> Regards,
>
> - Arnaldo
>
> Arnaldo Carvalho de Melo (5):
> perf top: Remove redundant perf_top->sym_counter
> perf top: Remove redundant syme->origin field
> perf symbols: Rename dso->origin to dso->symtab_type
> perf symbol: Move sym_entry->skip to symbol->ignore
> perf evlist: New command to list the names of events present in a perf.data file
>
> David Ahern (6):
> perf script: Change process_event prototype
> perf tracing: Remove print_graph_cpu and print_graph_proc from trace-event-parse
> perf script: Move printing of 'common' data from print_event and rename
> perf script: Support custom field selection for output
> perf script: Add support for dumping symbols
> perf script: Add support for H/W and S/W events
>
> Frederic Weisbecker (1):
> perf stat: Provide support for filters
>
> tools/perf/Documentation/perf-evlist.txt | 26 ++
> tools/perf/Documentation/perf-script.txt | 22 ++
> tools/perf/Makefile | 1 +
> tools/perf/builtin-evlist.c | 54 ++++
> tools/perf/builtin-script.c | 300 ++++++++++++++++++--
> tools/perf/builtin-stat.c | 8 +
> tools/perf/builtin-top.c | 20 +-
> tools/perf/builtin.h | 1 +
> tools/perf/command-list.txt | 1 +
> tools/perf/perf.c | 1 +
> tools/perf/util/annotate.c | 2 +-
> tools/perf/util/parse-events.c | 22 ++
> tools/perf/util/parse-events.h | 1 +
> .../perf/util/scripting-engines/trace-event-perl.c | 11 +-
> .../util/scripting-engines/trace-event-python.c | 11 +-
> tools/perf/util/session.c | 61 ++++
> tools/perf/util/session.h | 4 +
> tools/perf/util/symbol.c | 64 ++--
> tools/perf/util/symbol.h | 31 ++-
> tools/perf/util/top.c | 6 +-
> tools/perf/util/top.h | 4 +-
> tools/perf/util/trace-event-parse.c | 110 +-------
> tools/perf/util/trace-event-scripting.c | 9 +-
> tools/perf/util/trace-event.h | 10 +-
> 24 files changed, 580 insertions(+), 200 deletions(-)
> create mode 100644 tools/perf/Documentation/perf-evlist.txt
> create mode 100644 tools/perf/builtin-evlist.c
Pulled, thanks a lot Arnaldo!
Ingo
prev parent reply other threads:[~2011-03-16 12:53 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-15 20:04 Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 01/12] perf top: Remove redundant perf_top->sym_counter Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 02/12] perf top: Remove redundant syme->origin field Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 03/12] perf symbols: Rename dso->origin to dso->symtab_type Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 04/12] perf symbol: Move sym_entry->skip to symbol->ignore Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 05/12] perf stat: Provide support for filters Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 06/12] perf script: Change process_event prototype Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 07/12] perf tracing: Remove print_graph_cpu and print_graph_proc from trace-event-parse Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 08/12] perf script: Move printing of 'common' data from print_event and rename Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 09/12] perf script: Support custom field selection for output Arnaldo Carvalho de Melo
2011-03-15 20:04 ` [PATCH 10/12] perf script: Add support for dumping symbols Arnaldo Carvalho de Melo
2011-03-15 20:05 ` [PATCH 11/12] perf script: Add support for H/W and S/W events Arnaldo Carvalho de Melo
2011-03-15 20:05 ` [PATCH 12/12] perf evlist: New command to list the names of events present in a perf.data file Arnaldo Carvalho de Melo
2011-03-16 12:53 ` 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=20110316125317.GA3320@elte.hu \
--to=mingo@elte.hu \
--cc=acme@ghostprotocols.net \
--cc=acme@infradead.org \
--cc=daahern@cisco.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome