From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751511AbdARJJ4 (ORCPT ); Wed, 18 Jan 2017 04:09:56 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:36216 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751167AbdARJJw (ORCPT ); Wed, 18 Jan 2017 04:09:52 -0500 Date: Wed, 18 Jan 2017 10:09:45 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Alexander Shishkin , Andi Kleen , David Ahern , David Carrillo-Cisneros , Jiri Olsa , kernel-team@fb.com, Mark Drayton , Michael Petlan , Minchan Kim , Namhyung Kim , Peter Zijlstra , Soramichi Akiyama , Stephane Eranian , Thomas Gleixner , Yannick Brosseau Subject: Re: [GIT PULL 00/10] perf/core improvements and fixes Message-ID: <20170118090945.GA877@gmail.com> References: <20170117160705.16055-1-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170117160705.16055-1-acme@kernel.org> User-Agent: Mutt/1.5.24 (2015-08-30) 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 > > Test results at the end of this message, as usual. > > The following changes since commit 5b485629ba0d5d027880769ff467c587b24b4bde: > > kprobes, extable: Identify kprobes trampolines as kernel text area (2017-01-14 08:38:05 +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-4.11-20170117 > > for you to fetch changes up to d94386f28abad0c5879f0760712e34e71f88a7da: > > perf evlist: Fix typo in deliver_sample() (2017-01-17 11:36:45 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > New feature: > > - Account thread wait time (off cpu time) separately: sleep, iowait and > preempt, based on the prev_state of the last event, show the breakdown > when using "perf sched timehist --state" (Namhyumg Kim) > > Infrastructure: > > - Factor out pmu scale conversion code (Andi Kleen) > > - Remove unnecessary feature-dwarf warning (David Carrillo-Cisneros) > > - Add missing member name in OPT_() macros (Soramichi AKIYAMA) > > - Move variables referenced in libperf.a object files from perf's main() > file, so that other tools can use libperf.a with a different main() > (Soramichi AKIYAMA) > > Documentation: > > - Fix 'perf script' man page about --dump-raw-trace option (Michael Petlan) > > - Also allow forcing reading of non-root owned files by root in 'perf > script' (Yannick Brosseau) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Andi Kleen (1): > perf pmu: Factor out scale conversion code > > David Carrillo-Cisneros (1): > perf tools: Remove unneccessary feature-dwarf warning > > Michael Petlan (1): > perf script: Fix man page about --dump-raw-trace option > > Namhyung Kim (3): > perf sched timehist: Account thread wait time separately > perf sched timehist: Add --state option > perf sched timehist: Show total wait times for summary > > Soramichi AKIYAMA (3): > tools lib subcmd: Fix missing member name > perf tools: Move two variables usied in libperf from perf.c > perf evlist: Fix typo in deliver_sample() > > Yannick Brosseau (1): > perf script: Also allow forcing reading of non-root owned files by root > > tools/lib/subcmd/parse-options.h | 18 ++--- > tools/perf/Build | 3 +- > tools/perf/Documentation/perf-sched.txt | 2 + > tools/perf/Documentation/perf-script.txt | 4 +- > tools/perf/Makefile.config | 6 +- > tools/perf/builtin-sched.c | 130 ++++++++++++++++++++++++++++--- > tools/perf/builtin-script.c | 3 +- > tools/perf/perf.c | 3 - > tools/perf/ui/setup.c | 1 + > tools/perf/util/Build | 1 + > tools/perf/util/header.c | 2 + > tools/perf/util/pmu.c | 62 ++++++++------- > tools/perf/util/session.c | 2 +- > 13 files changed, 177 insertions(+), 60 deletions(-) Pulled, thanks a lot Arnaldo! Ingo