Commit d733e00d authored by Ingo Molnar's avatar Ingo Molnar

x86: update io_apic.c to the new cpumask code

Impact: build fix

The sparseirq tree crossed with the cpumask changes, fix the fallout.
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 855caa37
...@@ -347,13 +347,14 @@ void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc) ...@@ -347,13 +347,14 @@ void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
} }
} }
static void set_extra_move_desc(struct irq_desc *desc, cpumask_t mask) static void
set_extra_move_desc(struct irq_desc *desc, const struct cpumask *mask)
{ {
struct irq_cfg *cfg = desc->chip_data; struct irq_cfg *cfg = desc->chip_data;
if (!cfg->move_in_progress) { if (!cfg->move_in_progress) {
/* it means that domain is not changed */ /* it means that domain is not changed */
if (!cpus_intersects(desc->affinity, mask)) if (!cpumask_intersects(&desc->affinity, mask))
cfg->move_desc_pending = 1; cfg->move_desc_pending = 1;
} }
} }
......
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