From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757186AbbBFQPE (ORCPT ); Fri, 6 Feb 2015 11:15:04 -0500 Received: from bombadil.infradead.org ([198.137.202.9]:38433 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756060AbbBFQPD (ORCPT ); Fri, 6 Feb 2015 11:15:03 -0500 Date: Fri, 6 Feb 2015 17:14:54 +0100 From: Peter Zijlstra To: "Rafael J. Wysocki" Cc: Thomas Gleixner , "Li, Aubrey" , "Brown, Len" , Alan Cox , LKML , Linux PM list Subject: Re: [Update] Re: [PATCH v3]PM/Sleep: Timer quiesce in freeze state Message-ID: <20150206161454.GQ21418@twins.programming.kicks-ass.net> References: <54866625.8010406@linux.intel.com> <16564156.c5NBzjJuA3@vostro.rjw.lan> <2439333.L8nfGI3YZp@vostro.rjw.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2439333.L8nfGI3YZp@vostro.rjw.lan> 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 On Fri, Feb 06, 2015 at 02:20:13AM +0100, Rafael J. Wysocki wrote: > void freeze_wake(void) > { > + unsigned long flags; > + > + spin_lock_irqsave(&suspend_freeze_lock, flags); > + if (suspend_freeze_state > FREEZE_STATE_NONE) { > + suspend_freeze_state = FREEZE_STATE_WAKE; > + wake_up(&suspend_freeze_wait_head); > + } > + spin_unlock_irqrestore(&suspend_freeze_lock, flags); > } > +static void enter_freeze_proper(struct cpuidle_driver *drv, > + struct cpuidle_device *dev, int index) > +{ > + tick_freeze(); > + drv->states[index].enter_freeze(dev, drv, index); > + /* > + * timekeeping_resume() that will be called by tick_unfreeze() for the > + * last CPU executing it calls functions containing RCU read-side > + * critical sections, so tell RCU about that. > + */ > + RCU_NONIDLE(tick_unfreeze()); > +} So I'm a wee bit confused; if we use an enter_freeze() state that keeps interrupts disabled; who is going to call the freeze_wake() thing?