Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752452AbdF1Rxo (ORCPT ); Wed, 28 Jun 2017 13:53:44 -0400 Received: from foss.arm.com ([217.140.101.70]:46816 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751684AbdF1Rxf (ORCPT ); Wed, 28 Jun 2017 13:53:35 -0400 Date: Wed, 28 Jun 2017 18:52:41 +0100 From: Mark Rutland To: Kyle Huey Cc: "Jin, Yao" , Ingo Molnar , "Peter Zijlstra (Intel)" , stable@vger.kernel.org, Alexander Shishkin , Arnaldo Carvalho de Melo , Jiri Olsa , Linus Torvalds , Namhyung Kim , Stephane Eranian , Thomas Gleixner , Vince Weaver , acme@kernel.org, jolsa@kernel.org, kan.liang@intel.com, Will Deacon , gregkh@linuxfoundation.org, "Robert O'Callahan" , open list Subject: Re: [REGRESSION] perf/core: PMU interrupts dropped if we entered the kernel in the "skid" region Message-ID: <20170628175241.GH8252@leverpostej> References: <2256f9b5-1277-c4b1-1472-61a10cd1db9a@linux.intel.com> <20170628101248.GB5981@leverpostej> <20170628171943.GF8252@leverpostej> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1858 Lines: 46 On Wed, Jun 28, 2017 at 10:36:20AM -0700, Kyle Huey wrote: > On Wed, Jun 28, 2017 at 10:19 AM, Mark Rutland wrote: > > On Wed, Jun 28, 2017 at 09:46:43AM -0700, Kyle Huey wrote: > >> On Wed, Jun 28, 2017 at 3:12 AM, Mark Rutland wrote: > >> > Just to clarify, you don't care about the sample state at all? i.e. you > >> > don't need the user program counter? > >> > >> Right. `sample_regs_user`, `sample_star_user`, `branch_sample_type`, > >> etc are all 0. > >> https://github.com/mozilla/rr/blob/cf594dd01f07d96a61409e9f41a29f78c8c51693/src/PerfCounters.cc#L194 > >> is what we do use. > > > > Given that, I must be missing something. > > > > In __perf_event_overflow(), we already bail out early if > > !is_sampling_event(event), i.e. when the sample_period is 0. > > > > Your attr has a sample_period of zero, so something must be initialising > > that. > > > > Do you always call PERF_EVENT_IOC_PERIOD, or is something in the core > > fiddling with the sample period behind your back? > > We always either set sample_period or call PERF_EVENT_IOC_PERIOD (with > an enormous number if we don't actually want an interrupt. See > `PerfCounters::reset`, line 446. Ah, thanks for the pointer. > > It seems odd that an event without any samples to take has a sample > > period. I'm surprised that there's not *some* sample_type set. > > Perhaps sample_period is misleadingly named :) Alternatively, you > could imagine it as sampling where we're only interested in whether > the counter passed the sampling value or not. Sure; it's just that I suspect the existing kernel behviour isn't *quite* intentional, and I could easily see it getting broken in future, e.g. if someone were to make is_sampling_event() check the attr for sample types. So we need to keep an eye on that, regardless. Thanks, Mark.