diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-13 14:49:51 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-13 14:49:51 +1030 |
commit | b643decad6c80b6886a01a8c2229be6b7951ff7b (patch) | |
tree | 82ceb27c9974c4452456508fd52f714eb029700c /arch/x86/include/asm/smp.h | |
parent | 996867d0965775dfa62447d0bddb5dc6818a7892 (diff) | |
download | op-kernel-dev-b643decad6c80b6886a01a8c2229be6b7951ff7b.zip op-kernel-dev-b643decad6c80b6886a01a8c2229be6b7951ff7b.tar.gz |
x86: arch_send_call_function_ipi_mask
Impact: implement new API
We define arch_send_call_function_ipi_mask and generic kernel/smp.c
code creates arch_send_call_function_ipi() as a wrapper.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch/x86/include/asm/smp.h')
-rw-r--r-- | arch/x86/include/asm/smp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index cfb10f1..19e0d88 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h @@ -121,9 +121,10 @@ static inline void arch_send_call_function_single_ipi(int cpu) smp_ops.send_call_func_single_ipi(cpu); } -static inline void arch_send_call_function_ipi(cpumask_t mask) +#define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask +static inline void arch_send_call_function_ipi_mask(const struct cpumask *mask) { - smp_ops.send_call_func_ipi(&mask); + smp_ops.send_call_func_ipi(mask); } void cpu_disable_common(void); |