|
@@ -71,6 +71,7 @@ static irqreturn_t math_error_irq(int cpl, void *dev_id)
|
|
|
static struct irqaction fpu_irq = {
|
|
|
.handler = math_error_irq,
|
|
|
.name = "fpu",
|
|
|
+ .flags = IRQF_NO_THREAD,
|
|
|
};
|
|
|
#endif
|
|
|
|
|
@@ -80,6 +81,7 @@ static struct irqaction fpu_irq = {
|
|
|
static struct irqaction irq2 = {
|
|
|
.handler = no_action,
|
|
|
.name = "cascade",
|
|
|
+ .flags = IRQF_NO_THREAD,
|
|
|
};
|
|
|
|
|
|
DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
|