|
@@ -149,7 +149,7 @@ static int xen_smp_intr_init(unsigned int cpu)
|
|
|
rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
|
|
|
cpu,
|
|
|
xen_reschedule_interrupt,
|
|
|
- IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
+ IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
resched_name,
|
|
|
NULL);
|
|
|
if (rc < 0)
|
|
@@ -161,7 +161,7 @@ static int xen_smp_intr_init(unsigned int cpu)
|
|
|
rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
|
|
|
cpu,
|
|
|
xen_call_function_interrupt,
|
|
|
- IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
+ IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
callfunc_name,
|
|
|
NULL);
|
|
|
if (rc < 0)
|
|
@@ -171,7 +171,7 @@ static int xen_smp_intr_init(unsigned int cpu)
|
|
|
|
|
|
debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
|
|
|
rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
|
|
|
- IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
|
|
|
+ IRQF_PERCPU | IRQF_NOBALANCING,
|
|
|
debug_name, NULL);
|
|
|
if (rc < 0)
|
|
|
goto fail;
|
|
@@ -182,7 +182,7 @@ static int xen_smp_intr_init(unsigned int cpu)
|
|
|
rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
|
|
|
cpu,
|
|
|
xen_call_function_single_interrupt,
|
|
|
- IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
+ IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
callfunc_name,
|
|
|
NULL);
|
|
|
if (rc < 0)
|
|
@@ -201,7 +201,7 @@ static int xen_smp_intr_init(unsigned int cpu)
|
|
|
rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR,
|
|
|
cpu,
|
|
|
xen_irq_work_interrupt,
|
|
|
- IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
+ IRQF_PERCPU|IRQF_NOBALANCING,
|
|
|
callfunc_name,
|
|
|
NULL);
|
|
|
if (rc < 0)
|