From: John Hawkes Date: Tue, 16 Aug 2005 07:59:20 +0000 (+1000) Subject: [PATCH] fix for ia64 sched-domains code X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=367ae3cd74bdc2ad32d71293427fec570b14ddcd;p=linux-beck.git [PATCH] fix for ia64 sched-domains code Fix for ia64 sched domain building triggered by cpuset code. Acked-by: Nick Piggin Acked-by: Dinakar Guniguntala Signed-off-by: Linus Torvalds --- diff --git a/arch/ia64/kernel/domain.c b/arch/ia64/kernel/domain.c index d65e87b6394f..bbb8efe126b7 100644 --- a/arch/ia64/kernel/domain.c +++ b/arch/ia64/kernel/domain.c @@ -341,7 +341,7 @@ next_sg: #endif /* Attach the domains */ - for_each_online_cpu(i) { + for_each_cpu_mask(i, *cpu_map) { struct sched_domain *sd; #ifdef CONFIG_SCHED_SMT sd = &per_cpu(cpu_domains, i);