From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933347AbcAMJhj (ORCPT ); Wed, 13 Jan 2016 04:37:39 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:36778 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932117AbcAMJhc (ORCPT ); Wed, 13 Jan 2016 04:37:32 -0500 Date: Wed, 13 Jan 2016 10:37:27 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Andi Kleen , Andrew Morton , Andy Lutomirski , Bernd Petrovitsch , Borislav Petkov , Brendan Gregg , Chris J Arges , David Ahern , He Kuang , "H. Peter Anvin" , Jiri Olsa , Jiri Slaby , Josh Poimboeuf , Linus Torvalds , live-patching@vger.kernel.org, Markus Trippelsdorf , Masami Hiramatsu , Michal Marek , Namhyung Kim , Pedro Alves , Peter Zijlstra , pi3orama@163.com, Stephane Eranian , Thomas Gleixner , Wang Nan , x86@kernel.org, Zefan Li Subject: Re: [GIT PULL 00/11] perf/core improvements and fixes Message-ID: <20160113093726.GA2053@gmail.com> References: <1452621556-10616-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1452621556-10616-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: > From: Arnaldo Carvalho de Melo > > Hi Ingo, > > Please consider pulling, > > - Arnaldo > > The following changes since commit 0bd106d26dbe444160104b3153ca1652d2ab913b: > > Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2016-01-12 11:01:16 +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 34b7b0f95d41d2351a080e774d71085171db90e6: > > perf tools: Fallback to srcdir/Documentation/tips.txt (2016-01-12 12:42:08 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > User visible new features: > > - Add --buildid-all option to 'perf record' to avoid processing > samples, just collecting build-ids for _all_ the DSOs that appears > in PERF_RECORD_MMAP records (Namhyung Kim) > > - Add some more usage tips to appear in the hists browser > (top & report) (Namhyung Kim, Andi Kleen) > > - Fix mmap2 event allocation in synthesize code, where we were > allocating space just for PERF_RECORD_MMAP, the older variant, > which could lead to corner case problems (Wang Nan) > > Developer stuff: > > - Make list.h self-sufficient, removing one more reference to > kernel headers that lead to recent breakage when some rculist > change was made in the kernel sources. (Josh Poimboeuf) > > Add missing NORETURN define for parse-options.h in > tools/lib/subcmd (Josh Poimboeuf) > > - Fallback to srcdir/Documentation/ when not finding tips.txt > elsewhere (Namhyung Kim) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Jiri Olsa (1): > perf stat: Fix recort_usage typo > > Josh Poimboeuf (3): > tools: Make list.h self-sufficient > tools: Fix formatting of the "make -C tools" help message > tools subcmd: Add missing NORETURN define for parse-options.h > > Namhyung Kim (6): > perf record: Add --buildid-all option > perf tools: Add more usage tips > perf tools: Add file_only config option to strlist > perf tools: Set and pass DOCDIR to builtin-report.c > perf ui/tui: Print helpline message as is > perf tools: Fallback to srcdir/Documentation/tips.txt > > Wang Nan (1): > perf tools: Fix mmap2 event allocation in synthesize code > > tools/Makefile | 32 +- > tools/include/linux/list.h | 753 ++++++++++++++++++++++++++++++- > tools/lib/subcmd/parse-options.h | 4 + > tools/perf/Build | 1 + > tools/perf/Documentation/perf-record.txt | 3 + > tools/perf/Documentation/tips.txt | 15 + > tools/perf/builtin-record.c | 26 +- > tools/perf/builtin-report.c | 10 +- > tools/perf/builtin-stat.c | 8 +- > tools/perf/config/Makefile | 3 + > tools/perf/ui/browsers/hists.c | 2 +- > tools/perf/util/event.c | 4 +- > tools/perf/util/strlist.c | 8 + > tools/perf/util/strlist.h | 9 +- > tools/perf/util/util.c | 11 +- > 15 files changed, 847 insertions(+), 42 deletions(-) Pulled into perf/urgent, thanks a lot Arnaldo! Ingo