|
@@ -379,14 +379,14 @@ void do_cpu_irq_mask(struct pt_regs *regs)
|
|
static struct irqaction timer_action = {
|
|
static struct irqaction timer_action = {
|
|
.handler = timer_interrupt,
|
|
.handler = timer_interrupt,
|
|
.name = "timer",
|
|
.name = "timer",
|
|
- .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
|
|
|
|
|
|
+ .flags = IRQF_TIMER | IRQF_PERCPU | IRQF_IRQPOLL,
|
|
};
|
|
};
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
#ifdef CONFIG_SMP
|
|
static struct irqaction ipi_action = {
|
|
static struct irqaction ipi_action = {
|
|
.handler = ipi_interrupt,
|
|
.handler = ipi_interrupt,
|
|
.name = "IPI",
|
|
.name = "IPI",
|
|
- .flags = IRQF_DISABLED | IRQF_PERCPU,
|
|
|
|
|
|
+ .flags = IRQF_PERCPU,
|
|
};
|
|
};
|
|
#endif
|
|
#endif
|
|
|
|
|