irq_work: Fix build failure when CONFIG_IRQ_WORK is not defined
authorSteven Rostedt <rostedt@goodmis.org>
Thu, 19 Mar 2015 14:18:51 +0000 (10:18 -0400)
committerIngo Molnar <mingo@kernel.org>
Mon, 23 Mar 2015 09:55:21 +0000 (10:55 +0100)
commit71ad00d61ec861dc68b4544887729850e58cb99b
treecc2ea77f0cea5271df65f502f456e034a8f0931e
parente1b63dec2ddba654c7ca75996284e453f32d1af7
irq_work: Fix build failure when CONFIG_IRQ_WORK is not defined

When CONFIG_IRQ_WORK is not defined (difficult to do, as it also
requires CONFIG_PRINTK not to be defined), we get a build failure:

kernel/built-in.o: In function `flush_smp_call_function_queue':
kernel/smp.c:263: undefined reference to `irq_work_run'
kernel/smp.c:263: undefined reference to `irq_work_run'
Makefile:933: recipe for target 'vmlinux' failed

Simplest thing to do is to make irq_work_run() a nop when not set.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/20150319101851.4d224d9b@gandalf.local.home
Signed-off-by: Ingo Molnar <mingo@kernel.org>
include/linux/irq_work.h