diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 14:40:22 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-16 14:40:22 +1030 |
commit | f46df02a5799460e74bcb5a3875d4245978f3bd2 (patch) | |
tree | edf04633b0035680dbb8fff5ef4687085b4bf94c /arch/sparc/kernel | |
parent | fd8e18e9f486bcbdd8e0d817e6aa8622a5034540 (diff) | |
download | talos-op-linux-f46df02a5799460e74bcb5a3875d4245978f3bd2.tar.gz talos-op-linux-f46df02a5799460e74bcb5a3875d4245978f3bd2.zip |
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')
-rw-r--r-- | arch/sparc/kernel/smp_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sparc/kernel/smp_64.c b/arch/sparc/kernel/smp_64.c index a4713e77ce45..4e17eec41478 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; |