From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759558Ab3KMQf7 (ORCPT ); Wed, 13 Nov 2013 11:35:59 -0500 Received: from e32.co.us.ibm.com ([32.97.110.150]:44208 "EHLO e32.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755334Ab3KMQf4 (ORCPT ); Wed, 13 Nov 2013 11:35:56 -0500 Date: Wed, 13 Nov 2013 08:35:52 -0800 From: "Paul E. McKenney" To: Steven Rostedt Cc: Thomas Gleixner , Matthew Whitehead , john.stultz@linaro.org, linux-kernel@vger.kernel.org, mwhitehe@redhat.com Subject: Re: nohz problem with idle time on old hardware Message-ID: <20131113163552.GF4138@linux.vnet.ibm.com> Reply-To: paulmck@linux.vnet.ibm.com References: <20131113113927.GA13875@mwhitehe.csb> <20131113102153.5f10e6b5@gandalf.local.home> <20131113103134.5b8cf02f@gandalf.local.home> <20131113105737.3f7a0b1b@gandalf.local.home> <20131113111257.482c2955@gandalf.local.home> <20131113161829.GE4138@linux.vnet.ibm.com> <20131113112338.7d303c0f@gandalf.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131113112338.7d303c0f@gandalf.local.home> User-Agent: Mutt/1.5.21 (2010-09-15) X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13111316-0928-0000-0000-0000039F401E Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 13, 2013 at 11:23:38AM -0500, Steven Rostedt wrote: > On Wed, 13 Nov 2013 08:18:29 -0800 > "Paul E. McKenney" wrote: > > > On Wed, Nov 13, 2013 at 11:12:57AM -0500, Steven Rostedt wrote: > > > On Wed, 13 Nov 2013 17:07:18 +0100 (CET) > > > Thomas Gleixner wrote: > > > > > > > > > > Right. It's telling you if NOHZ is enabled. It's not telling you that > > > > NOHZ is active. > > > > > > Yeah, which makes this code rather silly: > > > > > > in rcu_prepare_for_idle(): > > > > > > /* Handle nohz enablement switches conservatively. */ > > > tne = ACCESS_ONCE(tick_nohz_enabled); > > > if (tne != rdtp->tick_nohz_enabled_snap) { > > > if (rcu_cpu_has_callbacks(cpu, NULL)) > > > invoke_rcu_core(); /* force nohz to see update. */ > > > rdtp->tick_nohz_enabled_snap = tne; > > > return; > > > } > > > > OK, what should I be checking instead? Not much point in trying to > > get RCU out of the way of disabling the scheduling-clock interrupt > > if NOHZ is disabled. ;-) > > I'll leave the answer to Thomas, but checking tick_nohz_enabled just > lets you know if someone booted with nohz=off or not (and has nohz > configured). But it doesn't tell you if nohz is actually being used. Based on Thomas's most recent response, it sounds like I need to check a frozen shark or something. ;-) Thanx, Paul > That is, tick_nohz_enabled is set at bootup and never changes. > > Perhaps this old hardware uncovered other bugs as well ;-) > > -- Steve >