Commit 8e419d53 authored by Ingo Molnar's avatar Ingo Molnar Committed by Thomas Gleixner

x86: Mark various interrupts IRQF_NODELAY

No forced threaded handlers for these interrupts.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 73a269a0
...@@ -72,6 +72,7 @@ static irqreturn_t math_error_irq(int cpl, void *dev_id) ...@@ -72,6 +72,7 @@ static irqreturn_t math_error_irq(int cpl, void *dev_id)
static struct irqaction fpu_irq = { static struct irqaction fpu_irq = {
.handler = math_error_irq, .handler = math_error_irq,
.name = "fpu", .name = "fpu",
.flags = IRQF_NODELAY,
}; };
#endif #endif
...@@ -81,6 +82,7 @@ static struct irqaction fpu_irq = { ...@@ -81,6 +82,7 @@ static struct irqaction fpu_irq = {
static struct irqaction irq2 = { static struct irqaction irq2 = {
.handler = no_action, .handler = no_action,
.name = "cascade", .name = "cascade",
.flags = IRQF_NODELAY,
}; };
DEFINE_PER_CPU(vector_irq_t, vector_irq) = { DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
......
...@@ -643,11 +643,13 @@ out_unlock: ...@@ -643,11 +643,13 @@ out_unlock:
static struct irqaction master_action = { static struct irqaction master_action = {
.handler = piix4_master_intr, .handler = piix4_master_intr,
.name = "PIIX4-8259", .name = "PIIX4-8259",
.flags = IRQF_NODELAY,
}; };
static struct irqaction cascade_action = { static struct irqaction cascade_action = {
.handler = no_action, .handler = no_action,
.name = "cascade", .name = "cascade",
.flags = IRQF_NODELAY,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment