Re: [PATCH 10/11] PCI: mvebu: Implement support for legacy INTx interrupts

From: Marc Zyngier
Date: Thu Jan 06 2022 - 12:31:49 EST


On Thu, 06 Jan 2022 17:20:44 +0000,
Marek Behún <kabel@xxxxxxxxxx> wrote:
>
> On Thu, 06 Jan 2022 16:27:44 +0000
> Marc Zyngier <maz@xxxxxxxxxx> wrote:
> > You are completely missing my point. I'm talking about data
> > structures, you're talking about interrupts. You have this:
> >
> > struct mvebu_pcie_port {
> > // Tons of stuff
> > struct irq_chip intx_chip;
> > };
> >
> > What I want you to do is:
> >
> > struct mvebu_pcie_port {
> > // Tons of stuff
> > };
> >
> > static struct irq_chip intx_chip = {
> > .name = "INTx",
> > .irq_mask = mvebu_pcie_intx_irq_mask,
> > .irq_unmask = mvebu_pcie_intx_irq_unmask;
> > };
> >
> > That's it. No more, no less.
> >
> > M.
> >
>
> Hmm, but struct irq_chip contains a dynamic member,
> struct device *parent_device;
> Isn't that used? Or are you planning to kill it?

Indeed, and I am definitely planning to kill it. This is the wrong
place for this stuff, and I want it gone. There are thankfully very
few users of this misfeature.

M.

--
Without deviation from the norm, progress is not possible.