Commit 64b1a21e authored by Glauber Costa's avatar Glauber Costa Committed by Ingo Molnar

x86: unify smp_call_function_mask

definition is moved to common header, x86_64 function name
now is native_smp_call_function_mask
Signed-off-by: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 8678969e
...@@ -386,9 +386,9 @@ static int __smp_call_function_mask(cpumask_t mask, ...@@ -386,9 +386,9 @@ static int __smp_call_function_mask(cpumask_t mask,
* You must not call this function with disabled interrupts or from a * You must not call this function with disabled interrupts or from a
* hardware interrupt handler or from a bottom half handler. * hardware interrupt handler or from a bottom half handler.
*/ */
int smp_call_function_mask(cpumask_t mask, int native_smp_call_function_mask(cpumask_t mask,
void (*func)(void *), void *info, void (*func)(void *), void *info,
int wait) int wait)
{ {
int ret; int ret;
...@@ -531,5 +531,6 @@ asmlinkage void smp_call_function_interrupt(void) ...@@ -531,5 +531,6 @@ asmlinkage void smp_call_function_interrupt(void)
struct smp_ops smp_ops = { struct smp_ops smp_ops = {
.smp_send_reschedule = native_smp_send_reschedule, .smp_send_reschedule = native_smp_send_reschedule,
.smp_call_function_mask = native_smp_call_function_mask,
}; };
EXPORT_SYMBOL_GPL(smp_ops); EXPORT_SYMBOL_GPL(smp_ops);
...@@ -28,6 +28,13 @@ static inline void smp_send_reschedule(int cpu) ...@@ -28,6 +28,13 @@ static inline void smp_send_reschedule(int cpu)
{ {
smp_ops.smp_send_reschedule(cpu); smp_ops.smp_send_reschedule(cpu);
} }
static inline int smp_call_function_mask(cpumask_t mask,
void (*func) (void *info), void *info,
int wait)
{
return smp_ops.smp_call_function_mask(mask, func, info, wait);
}
#endif #endif
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
......
...@@ -60,12 +60,6 @@ static inline void smp_send_stop(void) ...@@ -60,12 +60,6 @@ static inline void smp_send_stop(void)
{ {
smp_ops.smp_send_stop(); smp_ops.smp_send_stop();
} }
static inline int smp_call_function_mask(cpumask_t mask,
void (*func) (void *info), void *info,
int wait)
{
return smp_ops.smp_call_function_mask(mask, func, info, wait);
}
void native_smp_prepare_boot_cpu(void); void native_smp_prepare_boot_cpu(void);
void native_smp_prepare_cpus(unsigned int max_cpus); void native_smp_prepare_cpus(unsigned int max_cpus);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment