From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755382AbcDNNcN (ORCPT ); Thu, 14 Apr 2016 09:32:13 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:32893 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754240AbcDNNcM (ORCPT ); Thu, 14 Apr 2016 09:32:12 -0400 Date: Thu, 14 Apr 2016 15:32:05 +0200 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , David Ahern , He Kuang , Jiri Olsa , Masami Hiramatsu , Milian Wolff , Namhyung Kim , Peter Zijlstra , pi3orama@163.com, Taeung Song , Wang Nan , Zefan Li Subject: Re: [GIT PULL 00/11] perf/core improvements and fixes Message-ID: <20160414133205.GA6880@gmail.com> References: <1460637147-10555-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1460637147-10555-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 c5ab6ad7f627f031e2bbde575c7e6e27ea36da55: > > Merge tag 'perf-core-for-mingo-20160413' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-04-13 20:27:58 +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-20160414 > > for you to fetch changes up to 860b8d4b3f893c97f905b978ecf62f48816dc5de: > > perf config: Make show_config() use perf_config_set (2016-04-14 09:15:47 -0300) > > ---------------------------------------------------------------- > perf/core improvements: > > User visible: > > - Introduce 'perf record --timestamp-filename', to add a timestamp > at the end of the 'perf data' file. Will get added value when > the patch to make 'perf.data' file snapshots gets merged (Wang Nan) > > - Fix display of variables present in both --config and --user in > 'perf list' (Taeung Song) > > Build fixes: > > - Add seccomp and getradom beautifier related defines to fix > the build in older systems where those definitions are not > available (Arnaldo Carvalho de Melo) > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (4): > perf trace: Add seccomp beautifier related defines for older systems > perf trace: Add getrandom beautifier related defines for older systems > perf trace: Move mmap beautifiers to trace/beauty/ directory > perf trace: Move eventfd beautifiers to trace/beauty/ directory > > Taeung Song (2): > perf config: Introduce perf_config_set class > perf config: Make show_config() use perf_config_set > > Wang Nan (5): > perf ordered_events: Introduce reinit() > perf session: Make ordered_events reusable > perf data: Add perf_data_file__switch() helper > perf record: Turns auxtrace_snapshot_enable into 3 states > perf record: Add '--timestamp-filename' option to append timestamp to output file name > > tools/perf/builtin-config.c | 39 +++++-- > tools/perf/builtin-record.c | 112 +++++++++++++++++--- > tools/perf/builtin-trace.c | 218 ++++---------------------------------- > tools/perf/trace/beauty/eventfd.c | 38 +++++++ > tools/perf/trace/beauty/mmap.c | 158 +++++++++++++++++++++++++++ > tools/perf/util/config.c | 173 ++++++++++++++++++++++++++++++ > tools/perf/util/config.h | 26 +++++ > tools/perf/util/data.c | 41 +++++++ > tools/perf/util/data.h | 11 +- > tools/perf/util/ordered-events.c | 9 ++ > tools/perf/util/ordered-events.h | 1 + > tools/perf/util/session.c | 6 +- > 12 files changed, 611 insertions(+), 221 deletions(-) > create mode 100644 tools/perf/trace/beauty/eventfd.c > create mode 100644 tools/perf/trace/beauty/mmap.c > create mode 100644 tools/perf/util/config.h Pulled, thanks a lot Arnaldo! Ingo