From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753707AbbC3Te1 (ORCPT ); Mon, 30 Mar 2015 15:34:27 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:60887 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753682AbbC3TeY (ORCPT ); Mon, 30 Mar 2015 15:34:24 -0400 Date: Mon, 30 Mar 2015 21:34:11 +0200 From: Peter Zijlstra To: David Ahern Cc: Stephane Eranian , Arnaldo Carvalho de Melo , Thomas Gleixner , Jiri Olsa , Linus Torvalds , LKML , John Stultz , "H. Peter Anvin" , Andrew Morton , Ingo Molnar Subject: Re: [PATCH] perf, record: Add clockid parameter Message-ID: <20150330193411.GG23123@twins.programming.kicks-ass.net> References: <20150327143201.GG21418@twins.programming.kicks-ass.net> <55158F25.9040100@gmail.com> <20150327172059.GK23123@twins.programming.kicks-ass.net> <551594DD.7050705@gmail.com> <20150327201534.GD6291@redhat.com> <20150327215942.GL23123@twins.programming.kicks-ass.net> <20150328075549.GG27490@worktop.programming.kicks-ass.net> <551988F6.8000501@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <551988F6.8000501@gmail.com> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Mar 30, 2015 at 11:33:42AM -0600, David Ahern wrote: > On 3/28/15 1:55 AM, Peter Zijlstra wrote: > >@@ -761,6 +762,11 @@ void perf_evsel__config(struct perf_evse > > attr->disabled = 0; > > attr->enable_on_exec = 0; > > } > >+ > >+ if (opts->clockid >= 0) { > >+ attr->use_clockid = 1; > >+ attr->clockid = opts->clockid; > >+ } > > } > > One more: you need to set attr->clockid to -1 if use_clockid is not set so > that the analysis side knows whether attr->clockid was used. Otherwise it > defaults to 0 == CLOCK_REALTIME which is misleading. > > > diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c > index 1abf6919b8a2..27679ab38511 100644 > --- a/tools/perf/util/evsel.c > +++ b/tools/perf/util/evsel.c > @@ -766,7 +766,8 @@ void perf_evsel__config(struct perf_evsel *evsel, struct > record_opts *opts) > if (opts->clockid >= 0) { > attr->use_clockid = 1; > attr->clockid = opts->clockid; > - } > + } else > + attr->clockid = -1; > } No, we must not have a !0 value in ->clockid when we do not set use_clockid. The kernel checks for nonzero tail values.