From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754379Ab2C0LXG (ORCPT ); Tue, 27 Mar 2012 07:23:06 -0400 Received: from mail-we0-f174.google.com ([74.125.82.174]:39621 "EHLO mail-we0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754084Ab2C0LXC (ORCPT ); Tue, 27 Mar 2012 07:23:02 -0400 Date: Tue, 27 Mar 2012 13:22:56 +0200 From: Frederic Weisbecker To: Mike Galbraith Cc: Christoph Lameter , LKML , linaro-sched-sig@lists.linaro.org, Alessio Igor Bogani , Andrew Morton , Avi Kivity , Chris Metcalf , Daniel Lezcano , Geoff Levand , Gilad Ben Yossef , Ingo Molnar , Max Krasnyansky , "Paul E. McKenney" , Peter Zijlstra , Stephen Hemminger , Steven Rostedt , Sven-Thorsten Dietrich , Thomas Gleixner , Zen Lin Subject: Re: [PATCH 07/32] cpuset: Set up interface for nohz flag Message-ID: <20120327112254.GC13196@somewhere> References: <1332338318-5958-1-git-send-email-fweisbec@gmail.com> <1332338318-5958-9-git-send-email-fweisbec@gmail.com> <1332389033.5759.52.camel@marge.simpson.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1332389033.5759.52.camel@marge.simpson.net> 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 On Thu, Mar 22, 2012 at 05:03:53AM +0100, Mike Galbraith wrote: > On Wed, 2012-03-21 at 09:50 -0500, Christoph Lameter wrote: > > On Wed, 21 Mar 2012, Frederic Weisbecker wrote: > > > > > Prepare the interface to implement the nohz cpuset flag. > > > This flag, once set, will tell the system to try to > > > shutdown the periodic timer tick when possible. > > > > > > We use here a per cpu refcounter. As long as a CPU > > > is contained into at least one cpuset that has the > > > nohz flag set, it is part of the set of CPUs that > > > run into adaptive nohz mode. > > > > What are the drawbacks for nohz? > > For nohz in general, latency. To make it at all usable for rt loads, I > had to make isolated cores immune from playing load balancer. Even so, > to achieve target latency, I had to hack up cpusets to let the user > dynamically switch nohz off for specified sets (and the tick has to be > skewed in both cases or you can just forget it). With nohz, I can't > quite achieve 30us jitter target, turn it off, I get single digit. Out > of the current box, triple digit for simple synchronized frame timers + > compute worker-bees load on 64 cores. Patch 4 probably helps that, but > don't _think_ it'll fix it. If you (currently) ever become balancer, > you're latency target is smoking wreckage. But this is because of waking up from CPU low power mode, right? If so then busy tickless shouldn't be concerned. We can certainly have configurations where the tick is not stopped in idle but can be elsewhere.