aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/include/asm/smp.h
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2009-03-16 14:19:37 +1030
committerRusty Russell <rusty@rustcorp.com.au>2009-03-16 14:19:37 +1030
commit91887a362984324e254473e92820758c8e658f78 (patch)
tree6e35a78171e6c0df14fa70ab39368f08aa60056f /arch/parisc/include/asm/smp.h
parentparisc: sba_iommu: fix build bug when CONFIG_PARISC_AGP=y (diff)
downloadlinux-dev-91887a362984324e254473e92820758c8e658f78.tar.xz
linux-dev-91887a362984324e254473e92820758c8e658f78.zip
cpumask: arch_send_call_function_ipi_mask: parisc
We're weaning the core code off handing cpumask's around on-stack. This introduces arch_send_call_function_ipi_mask(), and by defining it, the old arch_send_call_function_ipi is defined by the core code. We also take the chance to change send_IPI_mask() and use the new for_each_cpu() iterator. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/parisc/include/asm/smp.h')
-rw-r--r--arch/parisc/include/asm/smp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/parisc/include/asm/smp.h b/arch/parisc/include/asm/smp.h
index 6ef4b7867b1b..21eb45a52629 100644
--- a/arch/parisc/include/asm/smp.h
+++ b/arch/parisc/include/asm/smp.h
@@ -29,7 +29,8 @@ extern void smp_send_reschedule(int cpu);
extern void smp_send_all_nop(void);
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 /* !ASSEMBLY */