diff options
author | Davidlohr Bueso <dave@stgolabs.net> | 2021-03-06 13:36:58 -0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2021-03-16 15:06:31 +0100 |
commit | 3a0ade0c521a542f8a25e96ce8ea0dfaa532ac75 (patch) | |
tree | 62f4be43c8c30899a2274713ce356be818e32ca7 /include/linux/interrupt.h | |
parent | cbe16f35bee6880becca6f20d2ebf6b457148552 (diff) | |
download | lwn-3a0ade0c521a542f8a25e96ce8ea0dfaa532ac75.tar.gz lwn-3a0ade0c521a542f8a25e96ce8ea0dfaa532ac75.zip |
tasklet: Remove tasklet_kill_immediate
Ever since RCU was converted to softirq, it has no users.
Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Paul E. McKenney <paulmck@kernel.org>
Link: https://lore.kernel.org/r/20210306213658.12862-1-dave@stgolabs.net
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 76f1161a441a..2b98156ec707 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -716,7 +716,6 @@ static inline void tasklet_enable(struct tasklet_struct *t) } extern void tasklet_kill(struct tasklet_struct *t); -extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu); extern void tasklet_init(struct tasklet_struct *t, void (*func)(unsigned long), unsigned long data); extern void tasklet_setup(struct tasklet_struct *t, |