From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753325AbeBEPRg (ORCPT ); Mon, 5 Feb 2018 10:17:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49840 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753311AbeBEPR0 (ORCPT ); Mon, 5 Feb 2018 10:17:26 -0500 Date: Mon, 5 Feb 2018 16:17:20 +0100 From: Jiri Olsa To: Stephane Eranian Cc: Arnaldo Carvalho de Melo , Jiri Olsa , lkml , Ingo Molnar , Namhyung Kim , David Ahern , Andi Kleen , Alexander Shishkin , Peter Zijlstra Subject: Re: [PATCH 1/3] perf tools: Fix period/freq terms setup Message-ID: <20180205151720.GA29340@krava> References: <20180201083812.11359-1-jolsa@kernel.org> <20180201083812.11359-2-jolsa@kernel.org> <20180202202849.GA8297@kernel.org> <20180202204004.GB8297@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 02, 2018 at 01:04:34PM -0800, Stephane Eranian wrote: > On Fri, Feb 2, 2018 at 12:40 PM, Arnaldo Carvalho de Melo > wrote: > > Em Fri, Feb 02, 2018 at 05:28:49PM -0300, Arnaldo Carvalho de Melo escreveu: > >> Em Fri, Feb 02, 2018 at 10:45:46AM -0800, Stephane Eranian escreveu: > >> > Otherwise, I tested what you have written so far and it works. > > > >> So I take that as a Tested-by: Stephane and will apply the patches, Jiri > >> can continue working on these other aspects, right? > > > > I also added this for the casual reader to get up to speed more quickly, > > please check that it makes sense. > > > > Committer note: > > > > When we use -c or a period=N term in the event definition, then we don't > > need to ask the kernel, via perf_event_attr.sample_type |= > > PERF_SAMPLE_PERIOD, to put the event period in each sample, as we know > > it already, it is in perf_event_attr.sample_period. > > > Not quite. It depends on how each event is setup. I can mix & match period > and frequency. The PERF_SAMPLE_PERIOD can be dropped only if all the > events use a fixed period either via period=N or -c. I think you can have both period and freq based event in one session if that's your concern..? what would be the problem? jirka > I hope that perf report can deal with config mixing period and fixed > mode correctly.