diff options
author | Ashok Raj <ashok.raj@intel.com> | 2005-09-07 00:16:19 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-08 01:57:16 +0200 |
commit | a888cebe17e39476e5ca18c3a4bd96c6775070db (patch) | |
tree | caeed406fda8fde3a283f1500807cacd5f6ef7a7 /arch | |
parent | [PATCH] x86_64: Fix cluster mode send_IPI_allbutself to use get_cpu()/put_cpu() (diff) | |
download | linux-a888cebe17e39476e5ca18c3a4bd96c6775070db.tar.xz linux-a888cebe17e39476e5ca18c3a4bd96c6775070db.zip |
[PATCH] x86_64: create sysfs entries for cpu only for present cpus
Need to create sysfs only for cpus that are present. Without which we see
NR_CPUS entries created when we have CONFIG_HOTPLUG and CONFIG_HOTPLUG_CPU
enabled.
Signed-off-by: Ashok Raj <ashok.raj@intel.com>
Acked-by: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/mach-default/topology.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/mach-default/topology.c b/arch/i386/mach-default/topology.c index 23395fff35d1..b64314069e78 100644 --- a/arch/i386/mach-default/topology.c +++ b/arch/i386/mach-default/topology.c @@ -76,7 +76,7 @@ static int __init topology_init(void) for_each_online_node(i) arch_register_node(i); - for_each_cpu(i) + for_each_present_cpu(i) arch_register_cpu(i); return 0; } @@ -87,7 +87,7 @@ static int __init topology_init(void) { int i; - for_each_cpu(i) + for_each_present_cpu(i) arch_register_cpu(i); return 0; } |