From: Arnaldo Carvalho de Melo <acme@infradead.org>
To: Ingo Molnar <mingo@kernel.org>
Cc: linux-kernel@vger.kernel.org,
Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
Andi Kleen <andi@firstfloor.org>,
Andrew Jones <drjones@redhat.com>, Borislav Petkov <bp@suse.de>,
Corey Ashford <cjashfor@linux.vnet.ibm.com>,
David Ahern <dsahern@gmail.com>, Feng Tang <feng.tang@intel.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jiri Olsa <jolsa@redhat.com>, Joe Perches <joe@perches.com>,
Mike Galbraith <efault@gmx.de>, Namhyung Kim <namhyung@gmail.com>,
Paul Gortmaker <paul.gortmaker@windriver.com>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: [GIT PULL 00/17] perf/core improvements and fixes
Date: Wed, 6 Feb 2013 18:44:02 -0300 [thread overview]
Message-ID: <1360187059-12661-1-git-send-email-acme@infradead.org> (raw)
From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Hi Ingo,
Please consider pulling,
- Arnaldo
The following changes since commit 0fbdad078a70ed72248c3d30fe32e45e83be00d1:
perf/x86: Allow for architecture specific RDPMC indexes (2013-02-06 19:45:24 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo
for you to fetch changes up to 88fd2b6a76264e9e14463f532caae09d82a53207:
perf python: Link with sysfs.o (2013-02-06 18:09:28 -0300)
----------------------------------------------------------------
perf/core improvements and fixes
. Check for flex and bison before continuing building, from Borislav Petkov.
. Make event_copy local to mmaps, fixing buffer wrap around problems, from
David Ahern.
. Add option for runtime switching perf data file in perf report, just press
's' and a menu with the valid files found in the current directory will be
presented, from Feng Tang.
. Add support to display whole group data for raw columns, from Jiri Olsa.
. Fix SIGALRM and pipe read race for the rwtop perl script. from Jiri Olsa.
. Fix perf_evsel::exclude_GH handling and add a test to catch regressions, from
Jiri Olsa.
. Error checking fixes, from Namhyung Kim.
. Fix calloc argument ordering, from Paul Gortmaker.
. Fix set event list leader, from Stephane Eranian.
. Add per processor socket count aggregation in perf stat, from Stephane Eranian.
. Fix perf python binding breakage.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
----------------------------------------------------------------
Arnaldo Carvalho de Melo (2):
perf evlist: Pass the event_group info via perf_attr_details
perf python: Link with sysfs.o
Borislav Petkov (1):
perf tools: Check for flex and bison before continuing building
David Ahern (1):
perf evlist: Make event_copy local to mmaps
Feng Tang (2):
perf hists browser: Add option for runtime switching perf data file
perf report: Enable the runtime switching of perf data file
Jiri Olsa (4):
perf hists browser: Add support to display whole group data for raw columns
perf perl scripts: Fix SIGALRM and pipe read race for rwtop
perf tools: Fix perf_evsel::exclude_GH handling
perf tests: Adding automated parsing tests for group :GH modifiers
Namhyung Kim (3):
perf sort: Drop ip_[lr] arguments from _sort__sym_cmp()
perf sort: Make setup_sorting returns an error code
perf sort: Check return value of strdup()
Paul Gortmaker (1):
perf tools: Fix calloc argument ordering
Stephane Eranian (3):
perf evlist: Fix set event list leader
perf tools: Add cpu_map processor socket level functions
perf stat: Add per processor socket count aggregation
tools/perf/Documentation/perf-stat.txt | 9 +-
tools/perf/Makefile | 13 ++-
tools/perf/builtin-annotate.c | 3 +-
tools/perf/builtin-diff.c | 4 +-
tools/perf/builtin-evlist.c | 4 +-
tools/perf/builtin-report.c | 41 +++++---
tools/perf/builtin-stat.c | 126 +++++++++++++++++++++--
tools/perf/builtin-top.c | 3 +-
tools/perf/perf.h | 26 -----
tools/perf/scripts/perl/rwtop.pl | 6 +-
tools/perf/tests/hists_link.c | 3 +-
tools/perf/tests/parse-events.c | 178 ++++++++++++++++++++++++++++++++-
tools/perf/ui/browsers/hists.c | 112 ++++++++++++++++++++-
tools/perf/ui/hist.c | 53 +++++-----
tools/perf/ui/keysyms.h | 1 +
tools/perf/util/callchain.c | 2 +-
tools/perf/util/cpumap.c | 54 ++++++++++
tools/perf/util/cpumap.h | 9 ++
tools/perf/util/evlist.c | 7 +-
tools/perf/util/evlist.h | 29 +++++-
tools/perf/util/evsel.c | 2 +-
tools/perf/util/evsel.h | 1 +
tools/perf/util/header.c | 4 +-
tools/perf/util/parse-events.c | 8 --
tools/perf/util/python-ext-sources | 1 +
tools/perf/util/sort.c | 38 ++++---
tools/perf/util/sort.h | 2 +-
27 files changed, 611 insertions(+), 128 deletions(-)
next reply other threads:[~2013-02-06 21:45 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-06 21:44 Arnaldo Carvalho de Melo [this message]
2013-02-06 21:44 ` [PATCH 01/17] perf hists browser: Add option for runtime switching perf data file Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 02/17] perf report: Enable the runtime switching of " Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 03/17] perf evlist: Fix set event list leader Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 04/17] perf tools: Check for flex and bison before continuing building Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 05/17] perf sort: Drop ip_[lr] arguments from _sort__sym_cmp() Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 06/17] perf sort: Make setup_sorting returns an error code Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 07/17] perf sort: Check return value of strdup() Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 08/17] perf evlist: Make event_copy local to mmaps Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 09/17] perf tools: Add cpu_map processor socket level functions Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 10/17] perf stat: Add per processor socket count aggregation Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 11/17] perf hists browser: Add support to display whole group data for raw columns Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 12/17] perf perl scripts: Fix SIGALRM and pipe read race for rwtop Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 13/17] perf tools: Fix perf_evsel::exclude_GH handling Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 14/17] perf tests: Adding automated parsing tests for group :GH modifiers Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 15/17] perf tools: Fix calloc argument ordering Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 16/17] perf evlist: Pass the event_group info via perf_attr_details Arnaldo Carvalho de Melo
2013-02-06 21:44 ` [PATCH 17/17] perf python: Link with sysfs.o Arnaldo Carvalho de Melo
2013-02-06 21:51 ` [GIT PULL 00/17] perf/core improvements and fixes Ingo Molnar
-- strict thread matches above, loose matches on Subject: below --
2019-02-21 1:25 Arnaldo Carvalho de Melo
2019-02-28 7:28 ` Ingo Molnar
2018-04-04 2:21 Arnaldo Carvalho de Melo
2018-04-04 5:25 ` Ingo Molnar
2016-08-04 0:49 Arnaldo Carvalho de Melo
2016-08-04 9:04 ` Ingo Molnar
2016-05-06 0:29 Arnaldo Carvalho de Melo
2016-05-06 6:36 ` Ingo Molnar
2015-05-14 22:37 Arnaldo Carvalho de Melo
2015-05-15 6:39 ` Ingo Molnar
2012-09-05 23:08 Arnaldo Carvalho de Melo
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=1360187059-12661-1-git-send-email-acme@infradead.org \
--to=acme@infradead.org \
--cc=acme@ghostprotocols.net \
--cc=acme@redhat.com \
--cc=andi@firstfloor.org \
--cc=bp@suse.de \
--cc=cjashfor@linux.vnet.ibm.com \
--cc=drjones@redhat.com \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=feng.tang@intel.com \
--cc=fweisbec@gmail.com \
--cc=joe@perches.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=namhyung@gmail.com \
--cc=paul.gortmaker@windriver.com \
--cc=paulus@samba.org \
--cc=peterz@infradead.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;
as well as URLs for NNTP newsgroup(s).