From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932632AbcCJVHi (ORCPT ); Thu, 10 Mar 2016 16:07:38 -0500 Received: from casper.infradead.org ([85.118.1.10]:44787 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932339AbcCJVFC (ORCPT ); Thu, 10 Mar 2016 16:05:02 -0500 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Alexander Shishkin , Andi Kleen , Borislav Petkov , Chris Phlipot , Colin Ian King , David Ahern , Davidlohr Bueso , He Kuang , "H . Peter Anvin" , Jiri Olsa , Mel Gorman , Namhyung Kim , Peter Zijlstra , Stephane Eranian , Steven Rostedt , Thomas Gleixner , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/19] perf/core improvements and fixes Date: Thu, 10 Mar 2016 18:04:21 -0300 Message-Id: <1457643880-4908-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.5.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Ingo, Please consider pulling, - Arnaldo The following changes since commit 3a99e6db539e53cc9c79282e80f8362b0cb96ac8: perf bench mem: Prepare the x86-64 build for upstream memcpy_mcsafe() changes (2016-03-09 10:40:01 +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-20160310 for you to fetch changes up to 206cab651d07563d766c7f4cb73f858c5df3dec5: perf stat: Add --metric-only support for -A (2016-03-10 16:50:47 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - Implement 'perf stat --metric-only' (Andi Kleen) - Fix perf script python database export crash (Chris Phlipot) Infrastructure: - perf top/report --hierarchy assorted fixes for problems introduced in this perf/core cycle (Namhyung Kim) - Support '~' operation in libtraceevent (Steven Rosted) Build fixes: - Fix bulding of jitdump on opensuse on ubuntu systems when the DWARF devel files are not installed (Arnaldo Carvalho de Melo) - Do not try building jitdump on unsupported arches (Jiri Olsa) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Andi Kleen (3): perf stat: Document CSV format in manpage perf stat: Implement --metric-only mode perf stat: Add --metric-only support for -A Arnaldo Carvalho de Melo (1): perf jitdump: DWARF is also needed Chris Phlipot (1): perf tools: Fix perf script python database export crash Jiri Olsa (3): perf tools: Pass perf_hpp_list all the way through setup_sort_list perf tools: Omit unnecessary cast in perf_pmu__parse_scale perf jitdump: Build only on supported archs Namhyung Kim (10): perf tools: Fix hist_entry__filter() for hierarchy perf tools: Add more sort entry check functions perf tools: Fix command line filters in hierarchy mode perf tools: Remove hist_entry->fmt field perf hists browser: Cleanup hist_browser__fprintf_hierarchy_entry() perf tools: Remove nr_sort_keys field perf tools: Recalc total periods using top-level entries in hierarchy perf tools: Add sort__has_comm variable perf hists browser: Allow thread filtering for comm sort key perf hists browser: Check sort keys before hot key actions Steven Rostedt (1): tools lib traceevent: Add '~' operation within arg_num_eval() tools/lib/traceevent/event-parse.c | 6 + tools/perf/Documentation/perf-stat.txt | 27 ++++ tools/perf/arch/arm/Makefile | 1 + tools/perf/arch/arm64/Makefile | 1 + tools/perf/arch/powerpc/Makefile | 1 + tools/perf/arch/x86/Makefile | 1 + tools/perf/builtin-inject.c | 12 +- tools/perf/builtin-stat.c | 244 +++++++++++++++++++++++++++++++-- tools/perf/config/Makefile | 7 + tools/perf/ui/browsers/hists.c | 73 ++++++---- tools/perf/ui/hist.c | 3 - tools/perf/util/Build | 3 + tools/perf/util/evsel.h | 6 +- tools/perf/util/hist.c | 144 +++++++++++++++++-- tools/perf/util/hist.h | 6 +- tools/perf/util/pmu.c | 4 +- tools/perf/util/sort.c | 147 +++++++++----------- tools/perf/util/sort.h | 2 +- 18 files changed, 542 insertions(+), 146 deletions(-)