projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f64d9e
)
genirq: Fix incorrect check for forced IRQ thread handler
author
Alexander Gordeev
<agordeev@redhat.com>
Fri, 9 Mar 2012 13:59:13 +0000
(14:59 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 2 Apr 2012 16:27:10 +0000
(09:27 -0700)
commit
540b60e24f3f4781d80e47122f0c4486a03375b8
upstream.
We do not want a bitwise AND between boolean operands
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Link:
http://lkml.kernel.org/r/20120309135912.GA2114@dhcp-26-207.brq.redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/irq/manage.c
patch
|
blob
|
history
diff --git
a/kernel/irq/manage.c
b/kernel/irq/manage.c
index e4eedb1619711160f4c85540152c719c0476eb11..df8136fff8cc8407d309b0aaef4cf558a51e7251 100644
(file)
--- a/
kernel/irq/manage.c
+++ b/
kernel/irq/manage.c
@@
-770,7
+770,7
@@
static int irq_thread(void *data)
struct irqaction *action);
int wake;
- if (force_irqthreads & test_bit(IRQTF_FORCED_THREAD,
+ if (force_irqthreads &
&
test_bit(IRQTF_FORCED_THREAD,
&action->thread_flags))
handler_fn = irq_forced_thread_fn;
else