aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gleixner <[email protected]>2021-03-09 09:42:07 +0100
committerThomas Gleixner <[email protected]>2021-03-17 16:33:54 +0100
commitb0cd02c2a9494dbf0a1cc7dc7a3b8b400c158d37 (patch)
treee1fea860e6d3dfd0a945cbe5a0c182ebe6757056
parentca5f625118955fc544c3cb3dee7055d33ecadafb (diff)
tasklets: Use spin wait in tasklet_disable() temporarily
To ease the transition use spin waiting in tasklet_disable() until all usage sites from atomic context have been cleaned up. Signed-off-by: Thomas Gleixner <[email protected]> Acked-by: Peter Zijlstra (Intel) <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--include/linux/interrupt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 3c8a29176258..b7f00121f124 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -728,7 +728,8 @@ static inline void tasklet_disable_in_atomic(struct tasklet_struct *t)
static inline void tasklet_disable(struct tasklet_struct *t)
{
tasklet_disable_nosync(t);
- tasklet_unlock_wait(t);
+ /* Spin wait until all atomic users are converted */
+ tasklet_unlock_spin_wait(t);
smp_mb();
}