linux/debian/patches-rt/0017-percpu-include-irqflag...

30 lines
1.0 KiB
Diff
Raw Normal View History

2018-10-30 12:40:05 +00:00
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Thu, 11 Oct 2018 16:39:59 +0200
2019-11-25 00:04:39 +00:00
Subject: [PATCH 017/290] percpu: include irqflags.h for raw_local_irq_save()
Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=f917aafbaad3be951578ed66aa337f869b407357
2018-10-30 12:40:05 +00:00
The header percpu.h header file is using raw_local_irq_save() but does
not include irqflags.h for its definition. It compiles because the
header file is included via an other header file.
On -RT the build fails because raw_local_irq_save() is not defined.
Include irqflags.h in percpu.h.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
include/asm-generic/percpu.h | 1 +
2018-10-30 12:40:05 +00:00
1 file changed, 1 insertion(+)
2019-04-08 23:49:20 +00:00
diff --git a/include/asm-generic/percpu.h b/include/asm-generic/percpu.h
index 1817a8415a5e..942d64c0476e 100644
2018-10-30 12:40:05 +00:00
--- a/include/asm-generic/percpu.h
+++ b/include/asm-generic/percpu.h
@@ -5,6 +5,7 @@
#include <linux/compiler.h>
#include <linux/threads.h>
#include <linux/percpu-defs.h>
+#include <linux/irqflags.h>
#ifdef CONFIG_SMP