Commit 25de110d authored by Ingo Molnar's avatar Ingo Molnar

irq_work: Define irq_work_single() on !CONFIG_IRQ_WORK too

Some SMP platforms don't have CONFIG_IRQ_WORK defined, resulting in a link
error at build time.

Define a stub and clean up the prototype definitions.
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
Acked-by: default avatarPeter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 1f8db415
...@@ -58,9 +58,11 @@ void irq_work_sync(struct irq_work *work); ...@@ -58,9 +58,11 @@ void irq_work_sync(struct irq_work *work);
void irq_work_run(void); void irq_work_run(void);
bool irq_work_needs_cpu(void); bool irq_work_needs_cpu(void);
void irq_work_single(void *arg);
#else #else
static inline bool irq_work_needs_cpu(void) { return false; } static inline bool irq_work_needs_cpu(void) { return false; }
static inline void irq_work_run(void) { } static inline void irq_work_run(void) { }
static inline void irq_work_single(void *arg) { }
#endif #endif
#endif /* _LINUX_IRQ_WORK_H */ #endif /* _LINUX_IRQ_WORK_H */
...@@ -194,8 +194,6 @@ void generic_smp_call_function_single_interrupt(void) ...@@ -194,8 +194,6 @@ void generic_smp_call_function_single_interrupt(void)
flush_smp_call_function_queue(true); flush_smp_call_function_queue(true);
} }
extern void irq_work_single(void *);
/** /**
* flush_smp_call_function_queue - Flush pending smp-call-function callbacks * flush_smp_call_function_queue - Flush pending smp-call-function callbacks
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment