From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932922AbcDSPvA (ORCPT ); Tue, 19 Apr 2016 11:51:00 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:54656 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932893AbcDSPu6 (ORCPT ); Tue, 19 Apr 2016 11:50:58 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Alexander Shishkin , Chris Phlipot , Colin Ian King , David Ahern , "H. Peter Anvin" , Jiri Olsa , Milian Wolff , Namhyung Kim , Peter Zijlstra , Stephane Eranian , Stephen Rothwell , Thomas Gleixner , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/14] perf/core improvements and fixes Date: Tue, 19 Apr 2016 12:50:27 -0300 Message-Id: <1461081041-10580-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.5.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.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 9243ae5b28d02dc7d71a4f00c981ef6feaede3f1: Merge tag 'perf-core-for-mingo-20160415' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-04-16 11:09:57 +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-20160419 for you to fetch changes up to 6566feafb4dba4eef30a9c0b25e6f49f996178b6: perf test: Add missing verbose output explaining the reason for failure (2016-04-19 12:39:36 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: Build fixes: - Fix 'perf trace' build when DWARF unwind isn't available (Arnaldo Carvalho de Melo) - Remove x86 references from arch-neutral Build, fixing it in !x86 arches, reported as breaking the build for powerpc64le in linux-next (Arnaldo Carvalho de Melo) Infrastructure: - Do memset() variable 'st' using the correct size in the jit code (Colin Ian King) - Fix postgresql ubuntu 'perf script' install instructions (Chris Phlipot) - Use callchain_param more thoroughly when checking how callchains were configured, eventually will be the only way to look for callchain parameters (Arnaldo Carvalho de Melo) - Fix some issues in the 'perf test kallsyms' entry (Arnaldo Carvalho de Melo) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (12): perf trace: Fix build when DWARF unwind isn't available perf evsel: Add missign class prefix to has_branch_stack method perf script: Check sample->callchain before using it perf callchain: Set callchain_param.enabled when parsing --call-graph perf report: Use callchain_param.enabled instead of tool specific knob perf tools: Ditch record_opts.callgraph_set perf hists browser: Fold two consecutive symbol_conf.use_callchain ifs perf top: Use callchain_param.enabled instead of symbol_conf.use_callchain perf build: Remove x86 references from arch-neutral Build perf symbols: Allow loading kallsyms without considering kcore files perf test: Ignore kcore files in the "vmlinux matches kallsyms" test perf test: Add missing verbose output explaining the reason for failure Chris Phlipot (1): perf script: Fix postgresql ubuntu install instructions Colin Ian King (1): perf jit: memset() variable 'st' using the correct size tools/perf/builtin-record.c | 14 ++++++------- tools/perf/builtin-report.c | 11 +++++----- tools/perf/builtin-script.c | 2 +- tools/perf/builtin-top.c | 25 +++++++++++------------ tools/perf/builtin-trace.c | 10 ++++----- tools/perf/perf.h | 1 - tools/perf/scripts/python/export-to-postgresql.py | 5 ++--- tools/perf/tests/vmlinux-kallsyms.c | 11 +++++++++- tools/perf/ui/browsers/hists.c | 5 ++--- tools/perf/util/Build | 4 ---- tools/perf/util/callchain.c | 2 ++ tools/perf/util/evsel.h | 2 +- tools/perf/util/jitdump.c | 4 ++-- tools/perf/util/machine.c | 14 +++++++++---- tools/perf/util/machine.h | 2 ++ tools/perf/util/session.c | 4 ++-- tools/perf/util/symbol.c | 12 ++++++++--- tools/perf/util/symbol.h | 2 ++ 18 files changed, 74 insertions(+), 56 deletions(-)