On Thursday, March 09, 2017 05:15:12 PM Viresh Kumar wrote: > From: Steve Muckle <[email protected]> > > Having irq_work_queue_on() available for !CONFIG_SMP can make some > call sites cleaner. > > Signed-off-by: Steve Muckle <[email protected]> > Signed-off-by: Viresh Kumar <[email protected]> > --- > include/linux/irq_work.h | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/include/linux/irq_work.h b/include/linux/irq_work.h > index 47b9ebd4a74f..0195c3502d6b 100644 > --- a/include/linux/irq_work.h > +++ b/include/linux/irq_work.h > @@ -1,6 +1,7 @@ > #ifndef _LINUX_IRQ_WORK_H > #define _LINUX_IRQ_WORK_H > > +#include <linux/bug.h> > #include <linux/llist.h> > > /* > @@ -36,6 +37,12 @@ bool irq_work_queue(struct irq_work *work); > > #ifdef CONFIG_SMP > bool irq_work_queue_on(struct irq_work *work, int cpu); > +#else > +static inline bool irq_work_queue_on(struct irq_work *work, int cpu) > +{ > + BUG_ON(cpu != 0);
Would WARN_ON(), or WARN_ON_ONCE() even, be insufficient? > + return irq_work_queue(work); > +} > #endif > > void irq_work_tick(void); > Thanks, Rafael

