[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <176859852017.510.2868283334488670420.tip-bot2@tip-bot2>
Date: Fri, 16 Jan 2026 21:22:00 -0000
From: "tip-bot2 for Eric Dumazet" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Eric Dumazet <edumazet@...gle.com>, "Borislav Petkov (AMD)" <bp@...en8.de>,
"Peter Zijlstra (Intel)" <peterz@...radead.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject:
[tip: x86/core] x86/smp: Use static_call for arch_smp_send_reschedule()
The following commit has been merged into the x86/core branch of tip:
Commit-ID: 83408307cf374038c5df199dde2e3fc11b3e27c2
Gitweb: https://git.kernel.org/tip/83408307cf374038c5df199dde2e3fc11b3e27c2
Author: Eric Dumazet <edumazet@...gle.com>
AuthorDate: Mon, 22 Dec 2025 20:14:05
Committer: Borislav Petkov (AMD) <bp@...en8.de>
CommitterDate: Fri, 16 Jan 2026 20:52:41 +01:00
x86/smp: Use static_call for arch_smp_send_reschedule()
Use static_call to avoid an indirect call, especially expensive
with retpoline.
Signed-off-by: Eric Dumazet <edumazet@...gle.com>
Signed-off-by: Borislav Petkov (AMD) <bp@...en8.de>
Acked-by: Peter Zijlstra (Intel) <peterz@...radead.org>
Link: https://patch.msgid.link/20251222201406.3725665-3-edumazet@google.com
---
arch/x86/include/asm/smp.h | 7 +++++--
arch/x86/kernel/smp.c | 5 +++++
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h
index 891a5d1..3b3ff77 100644
--- a/arch/x86/include/asm/smp.h
+++ b/arch/x86/include/asm/smp.h
@@ -49,6 +49,10 @@ void native_send_call_func_single_ipi(int cpu);
DECLARE_STATIC_CALL(x86_send_call_func_single_ipi,
native_send_call_func_single_ipi);
+void native_smp_send_reschedule(int cpu);
+DECLARE_STATIC_CALL(x86_smp_send_reschedule,
+ native_smp_send_reschedule);
+
/* Globals due to paravirt */
extern void set_cpu_sibling_map(int cpu);
@@ -94,7 +98,7 @@ static inline void __noreturn play_dead(void)
static inline void arch_smp_send_reschedule(int cpu)
{
- smp_ops.smp_send_reschedule(cpu);
+ static_call(x86_smp_send_reschedule)(cpu);
}
static inline void arch_send_call_function_single_ipi(int cpu)
@@ -127,7 +131,6 @@ void wbnoinvd_on_cpus_mask(struct cpumask *cpus);
void smp_kick_mwait_play_dead(void);
void __noreturn mwait_play_dead(unsigned int eax_hint);
-void native_smp_send_reschedule(int cpu);
void native_send_call_func_ipi(const struct cpumask *mask);
asmlinkage __visible void smp_reboot_interrupt(void);
diff --git a/arch/x86/kernel/smp.c b/arch/x86/kernel/smp.c
index 2c8fdf1..6e25a86 100644
--- a/arch/x86/kernel/smp.c
+++ b/arch/x86/kernel/smp.c
@@ -302,11 +302,16 @@ EXPORT_SYMBOL_GPL(smp_ops);
DEFINE_STATIC_CALL(x86_send_call_func_single_ipi,
native_send_call_func_single_ipi);
+DEFINE_STATIC_CALL(x86_smp_send_reschedule,
+ native_smp_send_reschedule);
+EXPORT_STATIC_CALL(x86_smp_send_reschedule);
void x86_smp_ops_static_call_update(void)
{
static_call_update(x86_send_call_func_single_ipi,
smp_ops.send_call_func_single_ipi);
+ static_call_update(x86_smp_send_reschedule,
+ smp_ops.smp_send_reschedule);
}
EXPORT_SYMBOL_GPL(x86_smp_ops_static_call_update);
Powered by blists - more mailing lists