blob: fa5d78cfe754e8fc7807241d607acb89b55c66a9 [file] [log] [blame]
From f2ffdc70e84b8dc8a9f0e639a468806dfe855e14 Mon Sep 17 00:00:00 2001
From: Paul Gortmaker <paul.gortmaker@windriver.com>
Date: Sun, 23 Jan 2011 22:33:07 -0500
Subject: [PATCH] irq chip: apply mask if IRQ_ONESHOT is set
This is an extraction from a merge commit in the RT tip tree.
See it in a git tip repo with:
git diff d94ddace23997c2899e8137f088488773b35eadb^2 \
d94ddace23997c2899e8137f088488773b35eadb \
kernel/irq/chip.c
You can find the origin of this change in the tip merge commit:
Author: Thomas Gleixner <tglx@linutronix.de>
Date: Mon Aug 17 20:14:14 2009 +0200
Merge branch 'rt/base' into rt/head
Conflicts:
kernel/irq/chip.c
kernel/irq/internals.h
kernel/irq/manage.c
Convert forced irq threading to the new ONESHOT infrastructure
Normally there are not significant changes/additions in a merge commit that
are not from any other "normal" commit. But in this case there are, so
break them out into separate explicit commits.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index 939c2dd..cd58389 100644
--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -496,6 +496,9 @@ handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc)
goto out;
}
+ if ((desc->status & IRQ_ONESHOT) && desc->chip->mask)
+ desc->chip->mask(irq);
+
desc->status |= IRQ_INPROGRESS;
desc->status &= ~IRQ_PENDING;
raw_spin_unlock(&desc->lock);
--
1.7.1.1