diff mbox

cpumask: fix typo s/CONFIG_CPU_HOTPLUG/CONFIG_HOTPLUG_CPU/

Message ID rwuzl9y975c.fsf@faui48a.informatik.uni-erlangen.de (mailing list archive)
State New, archived
Headers show

Commit Message

Reinhard Tartler Aug. 17, 2009, 8:19 a.m. UTC
In ./arch/*/Kconfig, this Kconfig symbol is defined as HOTPLUG_CPU, and
never as CPU_HOTPLUG

Signed-off-by: Reinhard Tartler <siretart@tauware.de>
---
 kernel/smp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Ingo Molnar Aug. 17, 2009, 8:42 a.m. UTC | #1
* Reinhard Tartler <siretart@tauware.de> wrote:

> In ./arch/*/Kconfig, this Kconfig symbol is defined as 
> HOTPLUG_CPU, and never as CPU_HOTPLUG
> 
> Signed-off-by: Reinhard Tartler <siretart@tauware.de>
> ---
>  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
--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

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: