* [PATCH] powerpc/irq: Improve/fix migrate_irqs()
@ 2017-02-07 0:36 Benjamin Herrenschmidt
2017-02-08 10:02 ` Michael Ellerman
0 siblings, 1 reply; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2017-02-07 0:36 UTC (permalink / raw)
To: linuxppc-dev
migrate_irqs() is used by some platforms to migrate interrupts
away from a CPU about to be offlined.
The current implementation had various issues such as not taking
the descriptor lock before manipulating it. This refactors it
a bit, fixing that problem at the same time.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
arch/powerpc/kernel/irq.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
index a018f5c..52308b4 100644
--- a/arch/powerpc/kernel/irq.c
+++ b/arch/powerpc/kernel/irq.c
@@ -456,22 +456,31 @@ void migrate_irqs(void)
for_each_irq_desc(irq, desc) {
struct irq_data *data;
struct irq_chip *chip;
+ const struct cpumask *affinity;
- data = irq_desc_get_irq_data(desc);
- if (irqd_is_per_cpu(data))
- continue;
+ /* Interrupts are already disabled */
+ raw_spin_lock(&desc->lock);
+ data = irq_desc_get_irq_data(desc);
+ affinity = irq_data_get_affinity_mask(data);
chip = irq_data_get_irq_chip(data);
+ if (!irq_has_action(irq) || irqd_is_per_cpu(data) ||
+ cpumask_subset(affinity, cpu_online_mask) ||
+ !chip) {
+ raw_spin_unlock(&desc->lock);
+ continue;
+ }
- cpumask_and(mask, irq_data_get_affinity_mask(data), map);
- if (cpumask_any(mask) >= nr_cpu_ids) {
+ cpumask_and(mask, affinity, map);
+ if (cpumask_empty(mask)) {
pr_warn("Breaking affinity for irq %i\n", irq);
cpumask_copy(mask, map);
}
if (chip->irq_set_affinity)
chip->irq_set_affinity(data, mask, true);
else if (desc->action && !(warned++))
- pr_err("Cannot set affinity for irq %i\n", irq);
+ pr_debug("Cannot set affinity for irq %i\n", irq);
+ raw_spin_unlock(&desc->lock);
}
free_cpumask_var(mask);
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/irq: Improve/fix migrate_irqs()
2017-02-07 0:36 [PATCH] powerpc/irq: Improve/fix migrate_irqs() Benjamin Herrenschmidt
@ 2017-02-08 10:02 ` Michael Ellerman
2017-02-09 0:40 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 3+ messages in thread
From: Michael Ellerman @ 2017-02-08 10:02 UTC (permalink / raw)
To: Benjamin Herrenschmidt, linuxppc-dev
Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:
> migrate_irqs() is used by some platforms to migrate interrupts
> away from a CPU about to be offlined.
>
> The current implementation had various issues such as not taking
> the descriptor lock before manipulating it.
... and not checking for a NULL chip (but presumably that's never
happened), and always calling irq_set_affinity() even for IRQs not on
the CPU.
But, any reason we can't use irq_migrate_all_off_this_cpu() ?
Which is in generic code.
cheers
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/irq: Improve/fix migrate_irqs()
2017-02-08 10:02 ` Michael Ellerman
@ 2017-02-09 0:40 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2017-02-09 0:40 UTC (permalink / raw)
To: Michael Ellerman, linuxppc-dev
On Wed, 2017-02-08 at 21:02 +1100, Michael Ellerman wrote:
> Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:
>
> > migrate_irqs() is used by some platforms to migrate interrupts
> > away from a CPU about to be offlined.
> >
> > The current implementation had various issues such as not taking
> > the descriptor lock before manipulating it.
>
> ... and not checking for a NULL chip (but presumably that's never
> happened), and always calling irq_set_affinity() even for IRQs not on
> the CPU.
>
> But, any reason we can't use irq_migrate_all_off_this_cpu() ?
> Which is in generic code.
Nope, I didn't notice it. I'll give that a spin.
Cheers,
Ben.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-02-09 0:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-07 0:36 [PATCH] powerpc/irq: Improve/fix migrate_irqs() Benjamin Herrenschmidt
2017-02-08 10:02 ` Michael Ellerman
2017-02-09 0:40 ` Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).