From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752622AbbHaI22 (ORCPT ); Mon, 31 Aug 2015 04:28:28 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:37210 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751514AbbHaI2P (ORCPT ); Mon, 31 Aug 2015 04:28:15 -0400 Date: Mon, 31 Aug 2015 10:28:10 +0200 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Arnaldo@infradead.org, Carvalho@infradead.org, de@infradead.org, Adrian Hunter , Andi Kleen , Andy Lutomirski , Borislav Petkov , David Ahern , Frederic Weisbecker , Hemant Kumar , Jiri Olsa , Kan Liang , Mark Drayton , Mark Rutland , Masami Hiramatsu , Matt Fleming , Mel Gorman , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Raphael Beamonte , Stephane Eranian , Steven Rostedt , Tony Jones , Vlastimil Babka , Yannick Brosseau , Arnaldo Carvalho de Melo Subject: Re: [GIT PULL 00/10] perf/core improvements and fixes Message-ID: <20150831082810.GB13092@gmail.com> References: <1440785196-27476-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1440785196-27476-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 d1ee8bc195ffedbf91af0245a2406d6ebd2578f8: > > Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-08-28 08:22:02 +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 2c07144dfce366e21465cc7b0ada9f0b6dc7b7ed: > > perf evlist: Add backpointer for perf_env to evlist (2015-08-28 14:54:14 -0300) > > ---------------------------------------------------------------- > perf/core improvement and fixes: > > User visible: > > - Add new compaction-times python script (Tony Jones) > > - Make the --[no-]-demangle/--[no-]-demangle-kernel command line > options available in 'perf script' too (Mark Drayton) > > - Allow for negative numbers in libtraceevent's print format, > fixing up misformatting in some tracepoints (Steven Rostedt) > > Infrastructure: > > - perf_env/perf_evlist changes to allow accessing the data > structure with the environment where some perf data was > collected in functions not necessarily related to perf.data > file processing (Kan Liang) > > - Cleanups for the tracepoint definition location paths routines (Jiri Olsa) > > - Introduce sysfs/filename__sprintf_build_id, removing code > duplication (Masami Hiramatsu) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (2): > perf trace: Add header with copyright and background info > perf evsel: Add a backpointer to the evlist a evsel is in > > Jiri Olsa (2): > perf tools: Add tracing_path and remove unneeded functions > perf tools: Do not change lib/api/fs/debugfs directly > > Kan Liang (2): > perf tools: Rename perf_session_env to perf_env > perf evlist: Add backpointer for perf_env to evlist > > Mark Drayton (1): > perf script: Add --[no-]-demangle/--[no-]-demangle-kernel > > Masami Hiramatsu (1): > perf buildid: Introduce sysfs/filename__sprintf_build_id > > Steven Rostedt (1): > tools lib traceeveent: Allow for negative numbers in print format > > Tony Jones (1): > perf scripts python: Add new compaction-times script > > tools/lib/traceevent/event-parse.c | 1 + > tools/perf/Documentation/perf-script.txt | 7 + > tools/perf/arch/common.c | 4 +- > tools/perf/arch/common.h | 2 +- > tools/perf/builtin-buildid-cache.c | 14 +- > tools/perf/builtin-buildid-list.c | 24 +- > tools/perf/builtin-script.c | 5 + > tools/perf/builtin-trace.c | 19 ++ > tools/perf/perf.c | 2 +- > .../scripts/python/bin/compaction-times-record | 2 + > .../scripts/python/bin/compaction-times-report | 4 + > tools/perf/scripts/python/compaction-times.py | 311 +++++++++++++++++++++ > tools/perf/ui/browser.h | 4 +- > tools/perf/ui/browsers/header.c | 2 +- > tools/perf/ui/browsers/hists.c | 12 +- > tools/perf/util/build-id.c | 32 +++ > tools/perf/util/build-id.h | 3 + > tools/perf/util/evlist.c | 2 + > tools/perf/util/evlist.h | 1 + > tools/perf/util/evsel.c | 2 + > tools/perf/util/evsel.h | 4 + > tools/perf/util/header.c | 1 + > tools/perf/util/header.h | 4 +- > tools/perf/util/hist.h | 4 +- > tools/perf/util/session.c | 2 +- > tools/perf/util/symbol.c | 4 +- > tools/perf/util/symbol.h | 4 +- > tools/perf/util/util.c | 57 +--- > tools/perf/util/util.h | 2 +- > 29 files changed, 433 insertions(+), 102 deletions(-) > create mode 100644 tools/perf/scripts/python/bin/compaction-times-record > create mode 100644 tools/perf/scripts/python/bin/compaction-times-report > create mode 100644 tools/perf/scripts/python/compaction-times.py Pulled, thanks a lot Arnaldo! Ingo