2006-01-10 05:16:18

by Randy Dunlap

[permalink] [raw]
Subject: [PATCH] i386: put HOTPLUG_CPU under Processor type, not Bus options

From: Randy Dunlap <[email protected]>

Move the HOTPLUG_CPU option under "Processor type" instead of under
"Bus options". This makes it the same for i386 as most other processor
types (arm, ia64, parisc, ppc, s390, & x86_64; but not for powerpc).
Besides, it takes me too long to find it under Bus options.
I can't be the only person who has trouble finding it.

Signed-off-by: Randy Dunlap <[email protected]>
---
arch/i386/Kconfig | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)

--- linux-2615-g5.orig/arch/i386/Kconfig
+++ linux-2615-g5/arch/i386/Kconfig
@@ -680,6 +680,16 @@ config CRASH_DUMP
depends on HIGHMEM
help
Generate crash dump after being started by kexec.
+
+config HOTPLUG_CPU
+ bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
+ depends on SMP && HOTPLUG && EXPERIMENTAL
+ ---help---
+ Say Y here to experiment with turning CPUs off and on. CPUs
+ can be controlled through /sys/devices/system/cpu.
+
+ Say N.
+
endmenu


@@ -966,15 +976,6 @@ config SCx200
This support is also available as a module. If compiled as a
module, it will be called scx200.

-config HOTPLUG_CPU
- bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
- depends on SMP && HOTPLUG && EXPERIMENTAL
- ---help---
- Say Y here to experiment with turning CPUs off and on. CPUs
- can be controlled through /sys/devices/system/cpu.
-
- Say N.
-
source "drivers/pcmcia/Kconfig"

source "drivers/pci/hotplug/Kconfig"


---