From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753651AbcCGTuv (ORCPT ); Mon, 7 Mar 2016 14:50:51 -0500 Received: from casper.infradead.org ([85.118.1.10]:39998 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753540AbcCGTpj (ORCPT ); Mon, 7 Mar 2016 14:45:39 -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 , Colin Ian King , David Ahern , Davidlohr Bueso , He Kuang , Jiri Olsa , Mel Gorman , Namhyung Kim , Peter Zijlstra , Stephane Eranian , Steven Rostedt , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/15] perf/core improvements and fixes Date: Mon, 7 Mar 2016 16:44:36 -0300 Message-Id: <1457379891-28516-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 009668520ae00d52026ccdb3884864e3473c6b65: Merge tag 'perf-core-for-mingo-20160303' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-03-04 12:19:21 +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-20160307 for you to fetch changes up to b03ae342d9bec460a6c9c327c3f5f758263b0932: perf report: Use hierarchy hpp list on gtk (2016-03-07 15:10:41 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - Allow grouping multiple sort keys per 'perf report/top --hierarchy' level (Namhyung Kim) - Document 'perf stat --detailed' option (Borislav Petkov) Infrastructure: - jitdump prep work for supporting it with Intel PT (Adrian Hunter) - Use 64-bit shifts with (TSC) time conversion (Adrian Hunter) Trivial: - Explicitly declare inc_group_count as a void function (Colin Ian King) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Adrian Hunter (5): perf inject: Hit all DSOs for AUX data in JIT and other cases perf session: Simplify tool stubs perf jit: Let jit_process() return errors perf jit: Move clockid validation perf tools: Use 64-bit shifts with (TSC) time conversion Borislav Petkov (1): perf stat: Document --detailed option Colin Ian King (1): perf tools: Explicitly declare inc_group_count as a void function Namhyung Kim (8): perf hists: Add level field to struct perf_hpp_fmt perf hists: Introduce perf_hpp__setup_hists_formats() perf hists: Use own hpp_list for hierarchy mode perf hists: Support multiple sort keys in a hierarchy level perf hists: Fix indent for multiple hierarchy sort key perf report: Use hierarchy hpp list on stdio perf hists browser: Use hierarchy hpp list perf report: Use hierarchy hpp list on gtk tools/perf/Documentation/perf-stat.txt | 8 ++ tools/perf/arch/x86/tests/rdpmc.c | 2 +- tools/perf/builtin-inject.c | 52 ++++------ tools/perf/ui/browsers/hists.c | 147 +++++++++++++++------------- tools/perf/ui/gtk/hists.c | 73 ++++++++------ tools/perf/ui/hist.c | 69 +++++++++++++ tools/perf/ui/stdio/hist.c | 171 +++++++++++++++++---------------- tools/perf/util/hist.c | 72 +++++++++----- tools/perf/util/hist.h | 14 +++ tools/perf/util/jitdump.c | 29 +++++- tools/perf/util/parse-events.y | 2 +- tools/perf/util/session.c | 40 ++------ tools/perf/util/sort.c | 146 ++++++++++++++++++++-------- tools/perf/util/sort.h | 1 + tools/perf/util/tsc.c | 2 +- 15 files changed, 514 insertions(+), 314 deletions(-)