Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932730AbcDFNJ5 (ORCPT ); Wed, 6 Apr 2016 09:09:57 -0400 Received: from mail-wm0-f46.google.com ([74.125.82.46]:34152 "EHLO mail-wm0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932505AbcDFNJx (ORCPT ); Wed, 6 Apr 2016 09:09:53 -0400 Subject: Re: [Xen-devel] [PATCH] xen: Add comment for missing FROZEN notifier transitions To: Anna-Maria Gleixner , linux-kernel@vger.kernel.org References: <1459773140-43707-1-git-send-email-anna-maria@linutronix.de> Cc: xen-devel@lists.xenproject.org, Stefano Stabellini , rt@linutronix.de, David Vrabel From: David Vrabel Message-ID: <57050A98.80901@cantab.net> Date: Wed, 6 Apr 2016 14:09:44 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.5.0 MIME-Version: 1.0 In-Reply-To: <1459773140-43707-1-git-send-email-anna-maria@linutronix.de> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1093 Lines: 31 On 04/04/16 13:32, Anna-Maria Gleixner wrote: > Xen guests do not offline/online CPUs during suspend/resume and > therefore FROZEN notifier transitions are not required. Add this > explanation as a comment in the code to get not confused why > CPU_TASKS_FROZEN masked transitions are not considered. > > Cc: David Vrabel > Cc: Stefano Stabellini > Cc: xen-devel@lists.xenproject.org > Signed-off-by: Anna-Maria Gleixner > --- > arch/arm/xen/enlighten.c | 6 ++++++ > arch/x86/xen/enlighten.c | 7 +++++++ > drivers/xen/events/events_fifo.c | 6 ++++++ > 3 files changed, 19 insertions(+) > > --- a/arch/arm/xen/enlighten.c > +++ b/arch/arm/xen/enlighten.c > @@ -213,6 +213,12 @@ static int xen_cpu_notification(struct n > unsigned long action, > void *hcpu) > { > + /* > + * Xen guests do not offline/online CPUs during > + * suspend/resume, thus CPU_TASKS_FROZEN masked transitions > + * are not considered. > + */ This may not be true for arm guests. David