diff options
Diffstat (limited to 'arch/x86/kernel/smp_64.c')
-rw-r--r-- | arch/x86/kernel/smp_64.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/kernel/smp_64.c b/arch/x86/kernel/smp_64.c index fd1816123496..225b765db5a2 100644 --- a/arch/x86/kernel/smp_64.c +++ b/arch/x86/kernel/smp_64.c | |||
@@ -386,9 +386,9 @@ static int __smp_call_function_mask(cpumask_t mask, | |||
386 | * You must not call this function with disabled interrupts or from a | 386 | * You must not call this function with disabled interrupts or from a |
387 | * hardware interrupt handler or from a bottom half handler. | 387 | * hardware interrupt handler or from a bottom half handler. |
388 | */ | 388 | */ |
389 | int smp_call_function_mask(cpumask_t mask, | 389 | int native_smp_call_function_mask(cpumask_t mask, |
390 | void (*func)(void *), void *info, | 390 | void (*func)(void *), void *info, |
391 | int wait) | 391 | int wait) |
392 | { | 392 | { |
393 | int ret; | 393 | int ret; |
394 | 394 | ||
@@ -531,5 +531,6 @@ asmlinkage void smp_call_function_interrupt(void) | |||
531 | 531 | ||
532 | struct smp_ops smp_ops = { | 532 | struct smp_ops smp_ops = { |
533 | .smp_send_reschedule = native_smp_send_reschedule, | 533 | .smp_send_reschedule = native_smp_send_reschedule, |
534 | .smp_call_function_mask = native_smp_call_function_mask, | ||
534 | }; | 535 | }; |
535 | EXPORT_SYMBOL_GPL(smp_ops); | 536 | EXPORT_SYMBOL_GPL(smp_ops); |