tracing: fix a build error on alpha

Impact: build fix on Alpha

When tracing is enabled, some arch have included <linux/irqflags.h>
on their <asm/system.h> but others like alpha or m68k don't.

Build error on alpha:

kernel/trace/trace.c: In function 'tracing_cpumask_write':
kernel/trace/trace.c:2145: error: implicit declaration of function 'raw_local_irq_disable'
kernel/trace/trace.c:2162: error: implicit declaration of function 'raw_local_irq_enable'

Tested on Alpha through a cross-compiler (should correct a similar issue on m68k).

Reported-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Frederic Weisbecker and committed by Ingo Molnar 21798a84 8115f3f0

+1
+1
kernel/trace/trace.c
··· 34 34 35 35 #include <linux/stacktrace.h> 36 36 #include <linux/ring_buffer.h> 37 + #include <linux/irqflags.h> 37 38 38 39 #include "trace.h" 39 40