summaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/smp_64.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2009-03-16 14:40:22 +1030
committerRusty Russell <rusty@rustcorp.com.au>2009-03-16 14:40:22 +1030
commitf46df02a5799460e74bcb5a3875d4245978f3bd2 (patch)
treeedf04633b0035680dbb8fff5ef4687085b4bf94c /arch/sparc/kernel/smp_64.c
parentfd8e18e9f486bcbdd8e0d817e6aa8622a5034540 (diff)
downloadop-kernel-dev-f46df02a5799460e74bcb5a3875d4245978f3bd2.zip
op-kernel-dev-f46df02a5799460e74bcb5a3875d4245978f3bd2.tar.gz
cpumask: arch_send_call_function_ipi_mask: sparc
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. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/sparc/kernel/smp_64.c')
-rw-r--r--arch/sparc/kernel/smp_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/smp_64.c b/arch/sparc/kernel/smp_64.c
index a4713e7..4e17eec 100644
--- a/arch/sparc/kernel/smp_64.c
+++ b/arch/sparc/kernel/smp_64.c
@@ -808,9 +808,9 @@ static void smp_start_sync_tick_client(int cpu)
extern unsigned long xcall_call_function;
-void arch_send_call_function_ipi(cpumask_t mask)
+void arch_send_call_function_ipi_mask(const struct cpumask *mask)
{
- xcall_deliver((u64) &xcall_call_function, 0, 0, &mask);
+ xcall_deliver((u64) &xcall_call_function, 0, 0, mask);
}
extern unsigned long xcall_call_function_single;
OpenPOWER on IntegriCloud