From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965976AbbJVWOu (ORCPT ); Thu, 22 Oct 2015 18:14:50 -0400 Received: from casper.infradead.org ([85.118.1.10]:41619 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965958AbbJVWOq (ORCPT ); Thu, 22 Oct 2015 18:14:46 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Borislav Petkov , Brendan Gregg , Chandler Carruth , Dave Chinner , David Ahern , Frederic Weisbecker , Jiri Olsa , =?UTF-8?q?Martin=20Li=C5=A1ka?= , Namhyung Kim , Peter Zijlstra , Scott Wood , Stephane Eranian , Steven Rostedt , Taeung Song , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 0/8] perf/core improvements and fixes Date: Thu, 22 Oct 2015 19:14:27 -0300 Message-Id: <1445552075-25155-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 4ba792e303e278052bb0ee60cce15d6d7dc15c7c: Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-10-22 09:33:46 +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 for you to fetch changes up to f06cff7c59b6b252d667435d7baad48687b41002: perf annotate: Don't die() when finding an invalid config option (2015-10-22 18:10:52 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - The default for callchains is back to 'callee' when --children is not used, (Namhyung Kim) - Move the 'use_offset' option to the right place where the annotate code expects it to be to be able to properly handle it (Namhyung Kim) - Don't die when an unknown 'annotate' option is found in the perf config file (usually ~/.perfconfig), just warn the user (Arnaldo Carvalho de Melo) Infrastructure: - Support %ps/%pS in libtraceevent (Scott Wood) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (2): perf ui tui: Register the error callbacks before initializing the widgets perf annotate: Don't die() when finding an invalid config option Namhyung Kim (5): perf tools: Move callchain help messages to callchain.h perf top: Support call-graph display options also perf tools: Defaults to 'caller' callchain order only if --children is enabled perf tools: Improve call graph documents and help messages perf annotate: Fix 'annotate.use_offset' config variable usage Scott Wood (1): tools lib traceevent: Support %ps/%pS tools/lib/traceevent/event-parse.c | 4 +-- tools/perf/Documentation/perf-record.txt | 9 +++++-- tools/perf/Documentation/perf-report.txt | 38 ++++++++++++++++++----------- tools/perf/Documentation/perf-top.txt | 5 ++-- tools/perf/builtin-record.c | 11 +++------ tools/perf/builtin-report.c | 17 ++++++++++--- tools/perf/builtin-top.c | 30 +++++++++++++++++++---- tools/perf/ui/browsers/annotate.c | 8 +++--- tools/perf/ui/tui/setup.c | 8 +++--- tools/perf/util/callchain.c | 42 +++++++++++++++++++++++++++++--- tools/perf/util/callchain.h | 26 ++++++++++++++++++++ tools/perf/util/util.c | 2 +- 12 files changed, 151 insertions(+), 49 deletions(-)