From: Bjorn Helgaas <helgaas@kernel.org>
To: Inochi Amaoto <inochiama@gmail.com>
Cc: "Nirmal Patel" <nirmal.patel@linux.intel.com>,
"Jonathan Derrick" <jonathan.derrick@linux.dev>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Manivannan Sadhasivam" <mani@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Chen Wang" <unicorn_wang@outlook.com>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Kenneth Crudup" <kenny@panix.com>,
"Genes Lists" <lists@sapience.com>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
"Yixun Lan" <dlan@gentoo.org>,
"Longbin Li" <looong.bin@gmail.com>
Subject: Re: [PATCH] PCI: vmd: override irq_startup()/irq_shutdown() in vmd_init_dev_msi_info()
Date: Tue, 14 Oct 2025 16:18:24 -0500 [thread overview]
Message-ID: <20251014211824.GA908020@bhelgaas> (raw)
In-Reply-To: <20251014014607.612586-1-inochiama@gmail.com>
On Tue, Oct 14, 2025 at 09:46:07AM +0800, Inochi Amaoto wrote:
> Since commit 54f45a30c0d0 ("PCI/MSI: Add startup/shutdown for per
> device domains") set callback irq_startup() and irq_shutdown() of
> the struct pci_msi[x]_template, __irq_startup() will always invokes
> irq_startup() callback instead of irq_enable() callback overridden
> in vmd_init_dev_msi_info(). This will not start the irq correctly.
>
> Also override irq_startup()/irq_shutdown() in vmd_init_dev_msi_info(),
> so the irq_startup() can invoke the real logic.
>
> Fixes: 54f45a30c0d0 ("PCI/MSI: Add startup/shutdown for per device domains")
> Reported-by: Kenneth Crudup <kenny@panix.com>
> Closes: https://lore.kernel.org/all/8a923590-5b3a-406f-a324-7bd1cf894d8f@panix.com/
> Signed-off-by: Inochi Amaoto <inochiama@gmail.com>
> Tested-by: Kenneth R. Crudup <kenny@panix.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Thomas, I'm happy to take this via PCI you prefer. I acked it
because you merged 54f45a30c0d0.
If you take it, I wouldn't mind if you capitalized "Override" in the
subject to match the history.
Obviously this is v6.18 material since 54f45a30c0d0 is a v6.18-rc1
regression.
> ---
> drivers/pci/controller/vmd.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c
> index 1bd5bf4a6097..b4b62b9ccc45 100644
> --- a/drivers/pci/controller/vmd.c
> +++ b/drivers/pci/controller/vmd.c
> @@ -192,6 +192,12 @@ static void vmd_pci_msi_enable(struct irq_data *data)
> data->chip->irq_unmask(data);
> }
>
> +static unsigned int vmd_pci_msi_startup(struct irq_data *data)
> +{
> + vmd_pci_msi_enable(data);
> + return 0;
> +}
> +
> static void vmd_irq_disable(struct irq_data *data)
> {
> struct vmd_irq *vmdirq = data->chip_data;
> @@ -210,6 +216,11 @@ static void vmd_pci_msi_disable(struct irq_data *data)
> vmd_irq_disable(data->parent_data);
> }
>
> +static void vmd_pci_msi_shutdown(struct irq_data *data)
> +{
> + vmd_pci_msi_disable(data);
> +}
> +
> static struct irq_chip vmd_msi_controller = {
> .name = "VMD-MSI",
> .irq_compose_msi_msg = vmd_compose_msi_msg,
> @@ -309,6 +320,8 @@ static bool vmd_init_dev_msi_info(struct device *dev, struct irq_domain *domain,
> if (!msi_lib_init_dev_msi_info(dev, domain, real_parent, info))
> return false;
>
> + info->chip->irq_startup = vmd_pci_msi_startup;
> + info->chip->irq_shutdown = vmd_pci_msi_shutdown;
> info->chip->irq_enable = vmd_pci_msi_enable;
> info->chip->irq_disable = vmd_pci_msi_disable;
> return true;
> --
> 2.51.0
>
next prev parent reply other threads:[~2025-10-14 21:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-14 1:46 [PATCH] PCI: vmd: override irq_startup()/irq_shutdown() in vmd_init_dev_msi_info() Inochi Amaoto
2025-10-14 21:18 ` Bjorn Helgaas [this message]
2025-10-16 16:55 ` Bjorn Helgaas
2025-10-17 7:29 ` Hervé D.
2025-10-17 13:32 ` Bjorn Helgaas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251014211824.GA908020@bhelgaas \
--to=helgaas@kernel.org \
--cc=bhelgaas@google.com \
--cc=dlan@gentoo.org \
--cc=inochiama@gmail.com \
--cc=jonathan.derrick@linux.dev \
--cc=kenny@panix.com \
--cc=kwilczynski@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lists@sapience.com \
--cc=looong.bin@gmail.com \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=nirmal.patel@linux.intel.com \
--cc=robh@kernel.org \
--cc=tglx@linutronix.de \
--cc=unicorn_wang@outlook.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox