diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2011-07-23 12:41:24 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-09-21 17:52:15 +0200 |
commit | 5a4a4ad851dd8db2d888fb86c8bd946b2ae79f60 (patch) | |
tree | 2c0e09bcbdb784c7b94af8ae06c1beea1c803aee /arch/mips/pnx8550 | |
parent | 4d85f6afa43d366868fdaa19595722309e4843f6 (diff) | |
download | blackbird-obmc-linux-5a4a4ad851dd8db2d888fb86c8bd946b2ae79f60.tar.gz blackbird-obmc-linux-5a4a4ad851dd8db2d888fb86c8bd946b2ae79f60.zip |
MIPS: Mark cascade and low level interrupts IRQF_NO_THREAD
Mark interrupts with no_action handler, cascade interrupts, low level
interrupts (bus error, halt ..) with IRQF_NO_THREAD to exclude them
from forced threading.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mips@linux-mips.org
Cc: Wu Zhangjin <wuzhangjin@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pnx8550')
-rw-r--r-- | arch/mips/pnx8550/common/int.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pnx8550/common/int.c b/arch/mips/pnx8550/common/int.c index 6b93c81779c1..1ebe22bdadc8 100644 --- a/arch/mips/pnx8550/common/int.c +++ b/arch/mips/pnx8550/common/int.c @@ -167,7 +167,7 @@ static struct irq_chip level_irq_type = { static struct irqaction gic_action = { .handler = no_action, - .flags = IRQF_DISABLED, + .flags = IRQF_DISABLED | IRQF_NO_THREAD, .name = "GIC", }; |