aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/x86/kernel/irq_64.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2021-02-10 00:40:54 +0100
committerThomas Gleixner <tglx@linutronix.de>2021-02-10 23:34:17 +0100
commit72f40a2823d6e16229ab58b898c6f22044e5222f (patch)
tree5f1967e5f6621f4317c57aff4b58aca16b8ba670 /arch/x86/kernel/irq_64.c
parentsoftirq: Move do_softirq_own_stack() to generic asm header (diff)
downloadwireguard-linux-72f40a2823d6e16229ab58b898c6f22044e5222f.tar.xz
wireguard-linux-72f40a2823d6e16229ab58b898c6f22044e5222f.zip
x86/softirq/64: Inline do_softirq_own_stack()
There is no reason to have this as a seperate function for a single caller. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20210210002513.382806685@linutronix.de
Diffstat (limited to 'arch/x86/kernel/irq_64.c')
-rw-r--r--arch/x86/kernel/irq_64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/kernel/irq_64.c b/arch/x86/kernel/irq_64.c
index f335c3910834..1c0fb96b9e39 100644
--- a/arch/x86/kernel/irq_64.c
+++ b/arch/x86/kernel/irq_64.c
@@ -74,8 +74,3 @@ int irq_init_percpu_irqstack(unsigned int cpu)
return 0;
return map_irq_stack(cpu);
}
-
-void do_softirq_own_stack(void)
-{
- run_softirq_on_irqstack();
-}