summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch')
-rw-r--r--recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch b/recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch
new file mode 100644
index 0000000..b8ef705
--- /dev/null
+++ b/recipes-kernel/linux/files/b4860-hard_irq_disable-bug.patch
@@ -0,0 +1,24 @@
1linux-qoriq-sdk: Repair a kernel compile issue due to a sintax error.
2
3The define __hard_irq_disable() was done using ";" character
4into the comment so the if structure did not recognized the
5"else" branch.
6
7Upstream-Status: Pending
8
9Signed-off-by: Alexandru Vaduva <alexandru.vaduva@enea.com>
10
11diff -ruN a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
12--- a/arch/powerpc/kernel/irq.c 2014-01-30 12:56:20.470918180 +0100
13+++ b/arch/powerpc/kernel/irq.c 2014-01-30 12:57:25.228109187 +0100
14@@ -227,8 +227,9 @@
15 * common cases that we'll ignore for now), so we skip the
16 * (expensive) mtmsrd.
17 */
18- if (unlikely(irq_happened != PACA_IRQ_HARD_DIS))
19+ if (unlikely(irq_happened != PACA_IRQ_HARD_DIS)) {
20 __hard_irq_disable();
21+ }
22 #ifdef CONFIG_TRACE_IRQFLAGS
23 else {
24 /*