mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 05:11:48 +00:00
[PATCH] genirq: add handle_bad_irq()
Handle bad IRQ vectors via the irqchip mechanism. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
dd87eb3a24
commit
7a55713ab4
@ -11,6 +11,8 @@
|
|||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
|
||||||
|
#include "internals.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Autodetection depends on the fact that any interrupt that
|
* Autodetection depends on the fact that any interrupt that
|
||||||
* comes in on to an unassigned handler will get stuck with
|
* comes in on to an unassigned handler will get stuck with
|
||||||
@ -41,6 +43,12 @@ unsigned long probe_irq_on(void)
|
|||||||
|
|
||||||
spin_lock_irq(&desc->lock);
|
spin_lock_irq(&desc->lock);
|
||||||
if (!desc->action && !(desc->status & IRQ_NOPROBE)) {
|
if (!desc->action && !(desc->status & IRQ_NOPROBE)) {
|
||||||
|
/*
|
||||||
|
* An old-style architecture might still have
|
||||||
|
* the handle_bad_irq handler there:
|
||||||
|
*/
|
||||||
|
compat_irq_chip_set_default_handler(desc);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some chips need to know about probing in
|
* Some chips need to know about probing in
|
||||||
* progress:
|
* progress:
|
||||||
|
@ -46,6 +46,7 @@ struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = {
|
|||||||
[0 ... NR_IRQS-1] = {
|
[0 ... NR_IRQS-1] = {
|
||||||
.status = IRQ_DISABLED,
|
.status = IRQ_DISABLED,
|
||||||
.chip = &no_irq_type,
|
.chip = &no_irq_type,
|
||||||
|
.handle_irq = handle_bad_irq,
|
||||||
.depth = 1,
|
.depth = 1,
|
||||||
.lock = SPIN_LOCK_UNLOCKED,
|
.lock = SPIN_LOCK_UNLOCKED,
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
|
Loading…
Reference in New Issue
Block a user