From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754623Ab1H2SCb (ORCPT ); Mon, 29 Aug 2011 14:02:31 -0400 Received: from mail-vx0-f174.google.com ([209.85.220.174]:57956 "EHLO mail-vx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754203Ab1H2SCa (ORCPT ); Mon, 29 Aug 2011 14:02:30 -0400 Date: Mon, 29 Aug 2011 20:02:25 +0200 From: Frederic Weisbecker To: Peter Zijlstra Cc: LKML , Andrew Morton , Anton Blanchard , Avi Kivity , Ingo Molnar , Lai Jiangshan , "Paul E . McKenney" , Paul Menage , Stephen Hemminger , Thomas Gleixner , Tim Pepper Subject: Re: [PATCH 13/32] nohz: Adaptive tick stop and restart on nohz cpuset Message-ID: <20110829180222.GG9748@somewhere.redhat.com> References: <1313423549-27093-1-git-send-email-fweisbec@gmail.com> <1313423549-27093-14-git-send-email-fweisbec@gmail.com> <1314631689.2816.91.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1314631689.2816.91.camel@twins> 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 Mon, Aug 29, 2011 at 05:28:09PM +0200, Peter Zijlstra wrote: > On Mon, 2011-08-15 at 17:52 +0200, Frederic Weisbecker wrote: > > +bool cpuset_nohz_can_stop_tick(void) > > +{ > > + struct rq *rq; > > + > > + rq = this_rq(); > > + > > + /* More than one running task need preemption */ > > + if (rq->nr_running > 1) > > + return false; > > + > > + return true; > > +} > > int sched_needs_cpu(int cpu), seems the right name, matches the existing > {rcu,printk,arch}_needs_cpu() functions. tick_nohz_stop_sched_tick() already handles that by keeping a periodic behaviour if one of these conditions are met. It has also the upside to restore the periodic behaviour if needed from irq return if the tick was stopped.