aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gordeev <[email protected]>2012-03-09 14:59:13 +0100
committerThomas Gleixner <[email protected]>2012-03-09 17:19:08 +0100
commit540b60e24f3f4781d80e47122f0c4486a03375b8 (patch)
treebcea664a581d1d1dbf63f544d00b52988f1422a5
parentb2a00178614e2cdd981a708d22a05c1ce4eadfd7 (diff)
genirq: Fix incorrect check for forced IRQ thread handler
We do not want a bitwise AND between boolean operands Signed-off-by: Alexander Gordeev <[email protected]> Cc: Oleg Nesterov <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Cc: [email protected] Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r--kernel/irq/manage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index a9a9dbe49fea..c0730ad8a117 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -773,7 +773,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