From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.mail.elte.hu ([157.181.151.9]:42186 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757389AbZHQImW (ORCPT ); Mon, 17 Aug 2009 04:42:22 -0400 Date: Mon, 17 Aug 2009 10:42:01 +0200 From: Ingo Molnar Subject: Re: [PATCH] cpumask: fix typo s/CONFIG_CPU_HOTPLUG/CONFIG_HOTPLUG_CPU/ Message-ID: <20090817084201.GA5877@elte.hu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Reinhard Tartler Cc: Sam Ravnborg , linux-kernel@vger.kernel.org, Andrew Morton , Jiri Kosina , linux-kbuild@vger.kernel.org * Reinhard Tartler wrote: > In ./arch/*/Kconfig, this Kconfig symbol is defined as > HOTPLUG_CPU, and never as CPU_HOTPLUG > > Signed-off-by: Reinhard Tartler > --- > kernel/smp.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/kernel/smp.c b/kernel/smp.c > index ad63d85..94188b8 100644 > --- a/kernel/smp.c > +++ b/kernel/smp.c > @@ -57,7 +57,7 @@ hotplug_cfd(struct notifier_block *nfb, unsigned long action, void *hcpu) > return NOTIFY_BAD; > break; > > -#ifdef CONFIG_CPU_HOTPLUG > +#ifdef CONFIG_HOTPLUG_CPU > case CPU_UP_CANCELED: > case CPU_UP_CANCELED_FROZEN: Already fixed upstream by: 69dd647: generic-ipi: fix hotplug_cfd() Ingo