Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753078AbbBSNub (ORCPT ); Thu, 19 Feb 2015 08:50:31 -0500 Received: from bombadil.infradead.org ([198.137.202.9]:49890 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752650AbbBSNua (ORCPT ); Thu, 19 Feb 2015 08:50:30 -0500 Date: Thu, 19 Feb 2015 14:50:02 +0100 From: Peter Zijlstra To: Adrian Hunter Cc: Ingo Molnar , Arnaldo Carvalho de Melo , linux-kernel@vger.kernel.org, David Ahern , Frederic Weisbecker , Jiri Olsa , Namhyung Kim , Paul Mackerras , Stephane Eranian , John Stultz , Thomas Gleixner , Pawel Moll , Steven Rostedt , Andi Kleen Subject: Re: [PATCH 0/2] perf/x86: Add ability to sample TSC Message-ID: <20150219135002.GJ5029@twins.programming.kicks-ass.net> References: <1424347870-8492-1-git-send-email-adrian.hunter@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1424347870-8492-1-git-send-email-adrian.hunter@intel.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 Content-Length: 1365 Lines: 34 On Thu, Feb 19, 2015 at 02:11:08PM +0200, Adrian Hunter wrote: > Hi > > With the advent of switching perf_clock to CLOCK_MONOTONIC, > it will not be possible to convert perf_clock directly to/from > TSC. So add the ability to sample TSC instead. Well, you can, mostly. MONOTONIC is only affected by NTP slew rate changes, not offset changes. And NTP limits the slew rate to 500 PPM, so even if you would get a slew change and then not update the userpage data for a second you'd be maximally off by 0.0005 seconds. And that is way below what the current perf clock guarantees on funny hardware. If you're really worried about this; we could maybe get John and Thomas to allow us a callback on every slew change so we can update the userpage data ASAP, much reducing the max error. Say it takes a 10e5 cycles to update your userpage, then you're never further off than 50 cycles, which is below your ART multiplier. Does that really matter? Also, if you have a stable crystal, the slew rate change should be minimal and infrequent, never getting you close to these numbers. So no, I'm not convinced we need this. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/