From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757950AbcEFAaf (ORCPT ); Thu, 5 May 2016 20:30:35 -0400 Received: from merlin.infradead.org ([205.233.59.134]:55123 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755736AbcEFAaJ (ORCPT ); Thu, 5 May 2016 20:30:09 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Ananth N Mavinakayanahalli , Balbir Singh , David Ahern , Ian Munsie , Jiri Olsa , linuxppc-dev@lists.ozlabs.org, Mark Wielaard , Masami Hiramatsu , Michael Ellerman , Milian Wolff , Namhyung Kim , "Naveen N . Rao" , Peter Zijlstra , pi3orama@163.com, Thiago Jung Bauermann , Wang Nan , Zefan Li , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/17] perf/core improvements and fixes Date: Thu, 5 May 2016 21:29:23 -0300 Message-Id: <1462494580-27164-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.5.5 X-SRS-Rewrite: SMTP reverse-path rewritten from by merlin.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 1b6de5917172967acd8db4d222df4225d23a8a60: perf/x86/intel/pt: Convert ACCESS_ONCE()s (2016-05-05 10:16:29 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo-20160505 for you to fetch changes up to b6b85dad30ad7e7394990e2317a780577974a4e6: perf evlist: Rename variable in perf_mmap__read() (2016-05-05 21:04:04 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - Order output of 'perf trace --summary' better, now the threads will appear ascending order of number of events, and then, for each, in descending order of syscalls by the time spent in the syscalls, so that the last page produced can be the one about the most interesting thread straced, suggested by Milian Wolff (Arnaldo Carvalho de Melo) - Do not show the runtime_ms for a thread when not collecting it, that is done so far only with 'perf trace --sched' (Arnaldo Carvalho de Melo) - Fix kallsyms perf test on ppc64le (Naveen N. Rao) Infrastructure: - Move global variables related to presence of some keys in the sort order to a per hist struct, to allow code like the hists browser to work with multiple hists with different lists of columns (Jiri Olsa) - Add support for generating bpf prologue in powerpc (Naveen N. Rao) - Fix kprobe and kretprobe handling with kallsyms on ppc64le (Naveen N. Rao) - evlist mmap changes, prep work for supporting reading backwards (Wang Nan) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (5): perf machine: Introduce number of threads member perf tools: Add template for generating rbtree resort class perf trace: Sort summary output by number of events perf trace: Sort syscalls stats by msecs in --summary perf trace: Do not show the runtime_ms for a thread when not collecting it Jiri Olsa (7): perf hists: Move sort__need_collapse into struct perf_hpp_list perf hists: Move sort__has_parent into struct perf_hpp_list perf hists: Move sort__has_sym into struct perf_hpp_list perf hists: Move sort__has_dso into struct perf_hpp_list perf hists: Move sort__has_socket into struct perf_hpp_list perf hists: Move sort__has_thread into struct perf_hpp_list perf hists: Move sort__has_comm into struct perf_hpp_list Naveen N. Rao (3): perf tools powerpc: Add support for generating bpf prologue perf powerpc: Fix kprobe and kretprobe handling with kallsyms on ppc64le perf symbols: Fix kallsyms perf test on ppc64le Wang Nan (2): perf evlist: Extract perf_mmap__read() perf evlist: Rename variable in perf_mmap__read() tools/perf/arch/powerpc/Makefile | 1 + tools/perf/arch/powerpc/util/dwarf-regs.c | 40 +++++--- tools/perf/arch/powerpc/util/sym-handling.c | 43 ++++++-- tools/perf/builtin-diff.c | 4 +- tools/perf/builtin-report.c | 4 +- tools/perf/builtin-top.c | 8 +- tools/perf/builtin-trace.c | 87 ++++++++++------ tools/perf/tests/hists_common.c | 2 +- tools/perf/tests/hists_cumulate.c | 2 +- tools/perf/tests/hists_link.c | 4 +- tools/perf/tests/hists_output.c | 2 +- tools/perf/ui/browsers/hists.c | 32 +++--- tools/perf/ui/gtk/hists.c | 2 +- tools/perf/ui/hist.c | 2 +- tools/perf/util/annotate.c | 2 +- tools/perf/util/callchain.c | 2 +- tools/perf/util/evlist.c | 56 ++++++----- tools/perf/util/hist.c | 14 +-- tools/perf/util/hist.h | 10 ++ tools/perf/util/machine.c | 9 +- tools/perf/util/machine.h | 1 + tools/perf/util/probe-event.c | 5 +- tools/perf/util/probe-event.h | 3 +- tools/perf/util/rb_resort.h | 149 ++++++++++++++++++++++++++++ tools/perf/util/sort.c | 35 +++---- tools/perf/util/sort.h | 7 -- tools/perf/util/symbol-elf.c | 7 +- tools/perf/util/symbol.h | 3 +- 28 files changed, 382 insertions(+), 154 deletions(-) create mode 100644 tools/perf/util/rb_resort.h