From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751748AbbCVJz5 (ORCPT ); Sun, 22 Mar 2015 05:55:57 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:36441 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751680AbbCVJzz (ORCPT ); Sun, 22 Mar 2015 05:55:55 -0400 Date: Sun, 22 Mar 2015 10:55:49 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Adrian Hunter , Borislav Petkov , Corey Ashford , David Ahern , Don Zickus , Frederic Weisbecker , "H . J . Lu" , Jiri Olsa , Li Zefan , Namhyung Kim , Paul Mackerras , Peter Zijlstra , pi3orama@163.com, Stephane Eranian , Wang Nan , Yunlong Song , Arnaldo Carvalho de Melo Subject: Re: [GIT PULL 00/31] perf/core improvements and fixes Message-ID: <20150322095549.GA24354@gmail.com> References: <1426784707-19466-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1426784707-19466-1-git-send-email-acme@kernel.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Arnaldo Carvalho de Melo wrote: > Hi Ingo, > > Please consider pulling, more to come, > > - Arnaldo > > The following changes since commit 107eb964d8c04417e8bce9e9ec2ed61d9261aec6: > > Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-03-13 13:30:10 +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 > > for you to fetch changes up to 0c8c20779c5d56b93b8cb4cd30ba129a927ab437: > > perf report: Don't allow empty argument for '-t'. (2015-03-19 13:53:28 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > User visible: > > - Bash completion for subcommands (Yunlong Song) > > - Allow annotating entries in callchains in the hists browser (top/report). > TODO: give some visual cue to what entries in callchains have samples and thus > can be annotated and/or allow showing the source code for functions without > samples (Arnaldo Carvalho de Melo) > > - Don't allow empty argument for '-t' in perf report, fixing segfault (Wang Nan) > > Infrastructure: > > - Prep work for moving the perf feature tests build system to tools/build (Jiri Olsa) > > - Fix perf-read-vdsox32 not building and lib64 install dir (H.J. Lu) > > - ARM64: fix building error and eh/debug frame offset cache fixes (Wang Nan) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (4): > perf hists browser: Simplify symbol annotation menu setup > perf hists browser: Fix up some branch alignment > perf hists: Remove hist_entry->used, not used anymore > perf hists browser: Allow annotating entries in callchains > > H.J. Lu (1): > perf tools: Fix perf-read-vdsox32 not building and lib64 install dir > > Jiri Olsa (10): > perf build: Disable default check for libbabeltrace > perf build: Move features build output under features directory > perf build: Fix pthread-attr-setaffinity-np include in test-all > perf build: Get rid of LIB_INCLUDE variable > perf build: Rename CORE_FEATURE_TESTS to FEATURE_TESTS > perf build: Get rid of VF_FEATURE_TESTS > perf build: Rename display_lib into feature_display > perf build: Rename display_vf to feature_verbose > perf build: Rename PERF-FEATURES into FEATURE-DUMP > perf build: Rename feature_print_var_code to print_var_code > > Wang Nan (3): > perf tools: Fix building error for arm64. > perf callchain: Separate eh/debug frame offset cache. > perf report: Don't allow empty argument for '-t'. > > Yunlong Song (13): > perf tools: Fix the bash completion for listing options of perf subcommand > perf tools: Fix the bash completion for listing subsubcommands of perf subcommand > perf tools: Provide the right bash completion for listing options of perf subcommand subsubcommand > perf tools: Fix the bash completion for listing events of perf subcommand record|stat|top -e > perf tools: Fix the bash completion to support listing events for --event > perf tools: Fix the bash completion for listing subcommands of perf > perf tools: Add the bash completion for listing subsubcommands of perf data > perf tools: Add the bash completion for listing subsubcommands of perf help > perf tools: Add the bash completion for listing subsubcommands of perf script > perf tools: Add the bash completion for listing subsubcommands of perf test > perf tools: Add the bash completion for listing subsubcommands of perf timechart > perf tools: Add the bash completion for listing subsubcommands of perf trace > perf tools: Avoid confusion with preloaded bash function for perf bash completion > > tools/perf/Makefile.perf | 3 +- > tools/perf/builtin-data.c | 6 +- > tools/perf/builtin-help.c | 17 ++++- > tools/perf/builtin-report.c | 2 +- > tools/perf/builtin-script.c | 5 +- > tools/perf/builtin-timechart.c | 7 +- > tools/perf/builtin-trace.c | 7 +- > tools/perf/config/Makefile | 111 ++++++++++++---------------- > tools/perf/config/Makefile.arch | 2 +- > tools/perf/config/feature-checks/Makefile | 7 +- > tools/perf/config/feature-checks/test-all.c | 11 ++- > tools/perf/perf-completion.sh | 88 +++++++++++++++++----- > tools/perf/tests/builtin-test.c | 5 +- > tools/perf/tests/make | 2 +- > tools/perf/ui/browsers/annotate.c | 8 +- > tools/perf/ui/browsers/hists.c | 59 +++++++-------- > tools/perf/util/dso.h | 3 +- > tools/perf/util/hist.c | 8 +- > tools/perf/util/hist.h | 9 +++ > tools/perf/util/parse-options.c | 21 +++++- > tools/perf/util/parse-options.h | 2 + > tools/perf/util/sort.h | 1 - > tools/perf/util/unwind-libunwind.c | 8 +- > 23 files changed, 237 insertions(+), 155 deletions(-) Pulled, thanks a lot Arnaldo! Ingo