From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752439AbbDCFCo (ORCPT ); Fri, 3 Apr 2015 01:02:44 -0400 Received: from mail-wg0-f45.google.com ([74.125.82.45]:32983 "EHLO mail-wg0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750895AbbDCFCn (ORCPT ); Fri, 3 Apr 2015 01:02:43 -0400 Date: Fri, 3 Apr 2015 07:02:38 +0200 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Adrian Hunter , Borislav Petkov , David Ahern , Don Zickus , Frederic Weisbecker , Jiri Olsa , Masami Hiramatsu , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Stephane Eranian , Wang Nan , Yunlong Song , Arnaldo Carvalho de Melo Subject: Re: [GIT PULL 00/15] perf/core improvements and fixes Message-ID: <20150403050237.GA15124@gmail.com> References: <1428013746-2037-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1428013746-2037-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, > > - Arnaldo > > The following changes since commit e1abf2cc8d5d80b41c4419368ec743ccadbb131e: > > bpf: Fix the build on BPF_SYSCALL=y && !CONFIG_TRACING kernels, make it more configurable (2015-04-02 16:28:06 +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 bd05954bfa17f03a7bd4454178ba09786b35e383: > > perf data: Support using -f to override perf.data file ownership for 'convert' (2015-04-02 13:18:52 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > User visible: > > - Support unnamed union/structure members data collection in 'perf probe' (Masami Hiramatsu) > > - Support missing -f to override perf.data file ownership (Yunlong Song) > > Infrastructure: > > - No need to lookup thread twice when processing samples in 'perf script' (Arnaldo Carvalho de Melo) > > - No need to pass thread twice to the scripting callbacks (Arnaldo Carvalho de Melo) > > - No need to pass thread twice to the db-export facility (Arnaldo Carvalho de Melo) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (4): > perf script: No need to lookup thread twice > perf scripting: No need to pass thread twice to the scripting callbacks > perf db-export: No need to pass thread twice to db_export__sample > perf db-export: No need to have ->thread twice in struct export_sample > > Masami Hiramatsu (1): > perf probe: Fix to track down unnamed union/structure members > > Yunlong Song (10): > perf evlist: Support using -f to override perf.data file ownership > perf inject: Support using -f to override perf.data file ownership > perf kmem: Support using -f to override perf.data file ownership > perf kvm: Support using -f to override perf.data.guest file ownership > perf lock: Support using -f to override perf.data file ownership > perf mem: Support using -f to override perf.data file ownership > perf script: Support using -f to override perf.data file ownership > perf timechart: Support using -f to override perf.data file ownership > perf trace: Support using -f to override perf.data file ownership > perf data: Support using -f to override perf.data file ownership for 'convert' > > tools/perf/builtin-data.c | 4 +++- > tools/perf/builtin-evlist.c | 2 ++ > tools/perf/builtin-inject.c | 1 + > tools/perf/builtin-kmem.c | 9 +++++---- > tools/perf/builtin-kvm.c | 2 ++ > tools/perf/builtin-lock.c | 5 +++++ > tools/perf/builtin-mem.c | 3 +++ > tools/perf/builtin-script.c | 23 ++++++++-------------- > tools/perf/builtin-timechart.c | 3 +++ > tools/perf/builtin-trace.c | 3 +++ > tools/perf/util/data-convert-bt.c | 3 ++- > tools/perf/util/data-convert-bt.h | 2 +- > tools/perf/util/db-export.c | 4 ++-- > tools/perf/util/db-export.h | 3 +-- > tools/perf/util/dwarf-aux.c | 14 +++++++++---- > tools/perf/util/evsel.h | 1 + > tools/perf/util/kvm-stat.h | 1 + > tools/perf/util/probe-finder.c | 8 +++++++- > .../perf/util/scripting-engines/trace-event-perl.c | 5 ++--- > .../util/scripting-engines/trace-event-python.c | 16 ++++++--------- > tools/perf/util/trace-event-scripting.c | 1 - > tools/perf/util/trace-event.h | 3 +-- > 22 files changed, 69 insertions(+), 47 deletions(-) Pulled, thanks a lot Arnaldo! Ingo