From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Andi Kleen <ak@linux.intel.com>, Borislav Petkov <bp@suse.de>,
David Ahern <dsahern@gmail.com>, Don Zickus <dzickus@redhat.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jeremie Galarneau <jgalar@efficios.com>,
Jiri Olsa <jolsa@redhat.com>, Mike Galbraith <efault@gmx.de>,
Namhyung Kim <namhyung@kernel.org>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Stephane Eranian <eranian@google.com>,
Tom Zanussi <tzanussi@gmail.com>, Wang Nan <wangnan0@huawei.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/21] perf/record improvements and fixes
Date: Thu, 26 Feb 2015 12:27:39 +0100 [thread overview]
Message-ID: <20150226112739.GB32259@gmail.com> (raw)
In-Reply-To: <1424900819-910-1-git-send-email-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> The following changes since commit 8a26ce4e544659256349551283414df504889a59:
>
> Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-02-18 19:18:18 +0100)
>
> are available in the git repository at:
>
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo
>
> for you to fetch changes up to 54cf776a9c5c2e6a91de31954bba4d3bad6c657c:
>
> perf data: Add a 'perf' prefix to the generic fields (2015-02-25 16:14:33 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> New user selectable features:
>
> - Support recording running/enabled time in 'perf record' (Andi Kleen)
>
> - New tool: 'perf data' for converting perf.data to other formats,
> initially for the CTF (Common Trace Format) from LTTng (Jiri Olsa, Sebastian Siewior)
>
> User visible:
>
> - Only insert blank duration bracket when tracing syscalls in 'perf trace' (Arnaldo Carvalho de Melo)
>
> - Filter out the trace pid when no threads are specified in 'perf trace' (Arnaldo Carvalho de Melo)
>
> - Add 'perf trace' man page entry for --event (Arnaldo Carvalho de Melo)
>
> - Dump stack on segfaults in 'perf trace' (Arnaldo Carvalho de Melo)
>
> Infrastructure:
>
> - Introduce set_filter_pid and set_filter_pids methods in the evlist class (Arnaldo Carvalho de Melo)
>
> - Some perf_session untanglement patches, removing the need to pass a
> perf_session instance for things that are related to evlists, so that
> tools that don't deal with perf.data files like trace in live mode can
> make use of the ordered_events class (Arnaldo Carvalho de Melo)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Andi Kleen (1):
> perf record: Support recording running/enabled time
>
> Arnaldo Carvalho de Melo (16):
> perf trace: Only insert blank duration bracket when tracing syscalls
> perf evlist: Introduce set_filter_pid method
> perf trace: Filter out the trace pid when no threads are specified
> perf evlist: Introduce set_filter_pids method
> perf trace: Introduce --filter-pids
> perf trace: Add man page entry for --event
> perf trace: Separate routine that handles an event from the one that reads it
> perf session: Remove wrappers to machines__find
> perf evlist: Adopt events_stats from perf_session
> perf session: Remove perf_session from warn_errors signature
> perf session: Remove perf_session from some deliver event routines
> perf session: Remove perf_session from dump_event
> perf ordered_events: Stop using tool->ordered_events
> perf tools: Introduce dump_stack signal helper
> perf trace: Dump stack on segfaults
> perf tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked
>
> Jiri Olsa (3):
> perf tools: Add feature check for libbabeltrace
> perf tools: Add new 'perf data' command
> perf data: Add perf data to CTF conversion support
>
> Sebastian Andrzej Siewior (1):
> perf data: Add a 'perf' prefix to the generic fields
>
> tools/perf/Build | 1 +
> tools/perf/Documentation/perf-data.txt | 40 ++
> tools/perf/Documentation/perf-record.txt | 3 +
> tools/perf/Documentation/perf-trace.txt | 6 +
> tools/perf/Documentation/perf.txt | 7 +-
> tools/perf/Makefile.perf | 4 +-
> tools/perf/builtin-data.c | 119 ++++
> tools/perf/builtin-record.c | 2 +
> tools/perf/builtin-sched.c | 6 +-
> tools/perf/builtin-top.c | 4 +-
> tools/perf/builtin-trace.c | 121 +++-
> tools/perf/builtin.h | 1 +
> tools/perf/command-list.txt | 1 +
> tools/perf/config/Makefile | 25 +
> tools/perf/config/feature-checks/Makefile | 8 +-
> tools/perf/config/feature-checks/test-all.c | 5 +
> .../config/feature-checks/test-libbabeltrace.c | 8 +
> tools/perf/perf.c | 1 +
> tools/perf/perf.h | 1 +
> tools/perf/util/Build | 2 +
> tools/perf/util/data-convert-bt.c | 614 +++++++++++++++++++++
> tools/perf/util/data-convert-bt.h | 8 +
> tools/perf/util/debug.c | 2 +
> tools/perf/util/debug.h | 1 +
> tools/perf/util/event.c | 2 +-
> tools/perf/util/evlist.c | 32 ++
> tools/perf/util/evlist.h | 3 +
> tools/perf/util/evsel.c | 6 +
> tools/perf/util/ordered-events.c | 5 +-
> tools/perf/util/session.c | 115 ++--
> tools/perf/util/session.h | 1 -
> tools/perf/util/util.c | 7 +
> tools/perf/util/util.h | 1 +
> 33 files changed, 1063 insertions(+), 99 deletions(-)
> create mode 100644 tools/perf/Documentation/perf-data.txt
> create mode 100644 tools/perf/builtin-data.c
> create mode 100644 tools/perf/config/feature-checks/test-libbabeltrace.c
> create mode 100644 tools/perf/util/data-convert-bt.c
> create mode 100644 tools/perf/util/data-convert-bt.h
Pulled, thanks a lot Arnaldo!
Ingo
prev parent reply other threads:[~2015-02-26 11:27 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-25 21:46 [GIT PULL 00/21] perf/record improvements and fixes Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 01/21] perf trace: Only insert blank duration bracket when tracing syscalls Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 02/21] perf evlist: Introduce set_filter_pid method Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 03/21] perf trace: Filter out the trace pid when no threads are specified Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 04/21] perf evlist: Introduce set_filter_pids method Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 05/21] perf trace: Introduce --filter-pids Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 06/21] perf trace: Add man page entry for --event Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 07/21] perf trace: Separate routine that handles an event from the one that reads it Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 08/21] perf session: Remove wrappers to machines__find Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 09/21] perf evlist: Adopt events_stats from perf_session Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 10/21] perf session: Remove perf_session from warn_errors signature Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 11/21] perf session: Remove perf_session from some deliver event routines Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 12/21] perf session: Remove perf_session from dump_event Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 13/21] perf ordered_events: Stop using tool->ordered_events Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 14/21] perf tools: Introduce dump_stack signal helper Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 15/21] perf trace: Dump stack on segfaults Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 16/21] perf tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 17/21] perf record: Support recording running/enabled time Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 18/21] perf tools: Add feature check for libbabeltrace Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 19/21] perf tools: Add new 'perf data' command Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 20/21] perf data: Add perf data to CTF conversion support Arnaldo Carvalho de Melo
2015-02-25 21:46 ` [PATCH 21/21] perf data: Add a 'perf' prefix to the generic fields Arnaldo Carvalho de Melo
2015-02-25 21:53 ` [GIT PULL 00/21] perf/record improvements and fixes Arnaldo Carvalho de Melo
2015-02-26 11:27 ` 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=20150226112739.GB32259@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=bigeasy@linutronix.de \
--cc=bp@suse.de \
--cc=dsahern@gmail.com \
--cc=dzickus@redhat.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jgalar@efficios.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung@kernel.org \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=tzanussi@gmail.com \
--cc=wangnan0@huawei.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