From: Thomas Gleixner Date: Tue, 9 Mar 2021 08:42:05 +0000 (+0100) Subject: tasklets: Use static inlines for stub implementations X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6951547a1399c8f56468ed93bea8f769b891aec3;p=linux.git tasklets: Use static inlines for stub implementations Inlines exist for a reason. Signed-off-by: Thomas Gleixner Tested-by: Sebastian Andrzej Siewior Acked-by: Peter Zijlstra (Intel) Link: https://lore.kernel.org/r/20210309084241.407702697@linutronix.de --- diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index d689fd7381522..0a4ce25c1464c 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -676,9 +676,9 @@ static inline void tasklet_unlock_wait(struct tasklet_struct *t) cpu_relax(); } #else -#define tasklet_trylock(t) 1 -#define tasklet_unlock_wait(t) do { } while (0) -#define tasklet_unlock(t) do { } while (0) +static inline int tasklet_trylock(struct tasklet_struct *t) { return 1; } +static inline void tasklet_unlock(struct tasklet_struct *t) { } +static inline void tasklet_unlock_wait(struct tasklet_struct *t) { } #endif extern void __tasklet_schedule(struct tasklet_struct *t);