]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
cpumask: arch_send_call_function_ipi_mask: s390
authorRusty Russell <rusty@rustcorp.com.au>
Thu, 24 Sep 2009 15:34:45 +0000 (09:34 -0600)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 24 Sep 2009 00:04:46 +0000 (09:34 +0930)
We're weaning the core code off handing cpumask's around on-stack.
This introduces arch_send_call_function_ipi_mask().

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
arch/s390/include/asm/smp.h
arch/s390/kernel/smp.c

index c991fe6473c990c95f794b627d0173f99c423262..6de62189a48f5e793ce881294776c826f68f5aac 100644 (file)
@@ -62,7 +62,8 @@ extern struct mutex smp_cpu_state_mutex;
 extern int smp_cpu_polarization[];
 
 extern void arch_send_call_function_single_ipi(int cpu);
-extern void arch_send_call_function_ipi(cpumask_t mask);
+extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);
+#define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask
 
 #endif
 
index b4b6396e6cf00fcc97347362eb882ae15d7d386f..c932caa5e8504e3e026708f2efe16f44ad0ce316 100644 (file)
@@ -147,11 +147,11 @@ static void smp_ext_bitcall(int cpu, ec_bit_sig sig)
                udelay(10);
 }
 
-void arch_send_call_function_ipi(cpumask_t mask)
+void arch_send_call_function_ipi_mask(const struct cpumask *mask)
 {
        int cpu;
 
-       for_each_cpu_mask(cpu, mask)
+       for_each_cpu(cpu, mask)
                smp_ext_bitcall(cpu, ec_call_function);
 }