From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751956AbbGaIEo (ORCPT ); Fri, 31 Jul 2015 04:04:44 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:35056 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750724AbbGaIEk (ORCPT ); Fri, 31 Jul 2015 04:04:40 -0400 Date: Fri, 31 Jul 2015 10:04:35 +0200 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Adrian Hunter , Andi Kleen , Borislav Petkov , David Ahern , Frederic Weisbecker , Jaroslav Skarvada , Jeremy Eder , Jiri Olsa , Kan Liang , Luiz Fernando Capitulino , Namhyung Kim , Pawel Moll , Peter Zijlstra , Stephane Eranian Subject: Re: [GIT PULL 00/10] perf/core improvements and fixes Message-ID: <20150731080435.GC32179@gmail.com> References: <1438273028-5191-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1438273028-5191-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 4b0c53e9e1a2a785746b2d379a32cb70b4dbb2fd: > > Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-07-27 17:56:18 +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 aa53c09e90a19c215549bd1ca970fddcb7c0c001: Hm, your pull request mail was cut short as it ends here abruptly. I figured it out nevertheless, from the commit log: ====================> User visible changes: - Force period term to overload global settings, i.e. previously this command line: $ perf record -e 'cpu/instructions,period=20000/',cycles -c 1000 sleep 1 would result in both events having a period equal to 1000, with the fix we get something saner: $ perf evlist -v | grep period cpu/instructions,period=20000/: ... { sample_period, sample_freq }: 20000, ... cycles: ... { sample_period, sample_freq }: 1000 ... $ (Jiri Olsa) Infrastructure changes: - Use the dummy software event with freq=0 in the twatch.py python binding example, to avoid disabling nohz. (Arnaldo Carvalho de Melo) - Add some missing constants to the python binding. (Arnaldo Carvalho de Melo) - Fix mismatched declarations for elf_getphdrnum, that happens only in the corner case where this function is not found on the system. (Arnaldo Carvalho de Melo) - Add build test for having ending double slash. (Jiri Olsa) - Introduce callgraph_set for callgraph option. (Kan Liang) tools/perf/Documentation/perf-record.txt | 2 +- tools/perf/builtin-record.c | 9 +- tools/perf/builtin-trace.c | 2 +- tools/perf/perf.h | 1 + tools/perf/python/twatch.py | 12 ++- tools/perf/tests/make | 13 ++- tools/perf/tests/parse-events.c | 12 ++- tools/perf/util/evsel.c | 33 ++++++++ tools/perf/util/evsel.h | 20 +++++ tools/perf/util/parse-events.c | 70 +++++++++++++--- tools/perf/util/python.c | 140 ++++++++++++++++--------------- tools/perf/util/session.c | 4 +- tools/perf/util/symbol-elf.c | 2 +- tools/perf/util/trace-event.c | 7 +- tools/perf/util/trace-event.h | 3 +- 15 files changed, 233 insertions(+), 97 deletions(-) <================ Pulled, thanks a lot Arnaldo! Ingo