From: Jiang Liu <jiang....@huawei.com>

Now we have killed all usage of generic_smp_call_function_single_interrupt()
from arch code, so kill it.

Signed-off-by: Jiang Liu <jiang....@huawei.com>
Cc: Jiang Liu <liu...@gmail.com>
Cc: Andrew Morton <a...@linux-foundation.org>
Cc: Shaohua Li <s...@kernel.org>
Cc: Peter Zijlstra <a.p.zijls...@chello.nl>
Cc: Ingo Molnar <mi...@elte.hu>
Cc: Steven Rostedt <rost...@goodmis.org>
Cc: Jiri Kosina <triv...@kernel.org>
Signed-off-by: Jiang Liu <liu...@gmail.com>
---
 include/linux/smp.h | 7 ++++---
 kernel/smp.c        | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/include/linux/smp.h b/include/linux/smp.h
index 5da22ee..5261608 100644
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -107,9 +107,10 @@ void kick_all_cpus_sync(void);
  * Generic and arch helpers
  */
 void __init call_function_init(void);
-void generic_smp_call_function_single_interrupt(void);
-#define generic_smp_call_function_interrupt \
-       generic_smp_call_function_single_interrupt
+void smp_call_function_interrupt(void);
+#define generic_smp_call_function_interrupt    smp_call_function_interrupt
+#define generic_smp_call_function_single_interrupt \
+       smp_call_function_interrupt
 
 /*
  * Mark the boot cpu "online" so that it can call console drivers in
diff --git a/kernel/smp.c b/kernel/smp.c
index 25c19af..144a427 100644
--- a/kernel/smp.c
+++ b/kernel/smp.c
@@ -167,7 +167,7 @@ static void generic_exec_single(int cpu, struct 
call_single_data *csd, int wait)
  * Invoked by arch to handle an IPI for call function single. Must be
  * called from the arch with interrupts disabled.
  */
-void generic_smp_call_function_single_interrupt(void)
+void smp_call_function_interrupt(void)
 {
        struct call_single_queue *q = &__get_cpu_var(call_single_queue);
        LIST_HEAD(list);
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to