From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752967AbbDBW3Q (ORCPT ); Thu, 2 Apr 2015 18:29:16 -0400 Received: from mail.kernel.org ([198.145.29.136]:33448 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751923AbbDBW3O (ORCPT ); Thu, 2 Apr 2015 18:29:14 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , 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: [GIT PULL 00/15] perf/core improvements and fixes Date: Thu, 2 Apr 2015 19:28:51 -0300 Message-Id: <1428013746-2037-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 1.9.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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(-)