From: Oleksii Kurochko <oleksii.kurochko@gmail.com>
To: Jan Beulich <jbeulich@suse.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Cc: "Andrew Cooper" <andrew.cooper3@citrix.com>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"Jason Andryuk" <jason.andryuk@amd.com>
Subject: Re: [PATCH for-4.21?] AMD/IOMMU: unshare IRQ .ack and .disable handlers
Date: Tue, 21 Oct 2025 12:43:44 +0200 [thread overview]
Message-ID: <2b49df90-ac99-4bf7-bf60-fc8358b63eb2@gmail.com> (raw)
In-Reply-To: <3cfa136c-3689-4d47-8a69-ce7af12ed9d0@suse.com>
[-- Attachment #1: Type: text/plain, Size: 1683 bytes --]
On 10/20/25 4:16 PM, Jan Beulich wrote:
> A .disable handler can't typically be re-used for .ack: The latter needs
> to deal with IRQ migration, while the former shouldn't. Furthermore
> invoking just irq_complete_move() isn't enough; one of
> move_{native,masked}_irq() also need invoking.
>
> Fixes: 487a1cffd71a ("x86: Implement per-cpu vector for xen hypervisor")
> Fixes: f821102450a1 ("x86: IRQ Migration logic enhancement")
> Signed-off-by: Jan Beulich<jbeulich@suse.com>
Release-Acked-by: Oleksii Kurochko<oleksii.kurochko@gmail.com>
~ Oleksii
>
> --- a/xen/drivers/passthrough/amd/iommu_init.c
> +++ b/xen/drivers/passthrough/amd/iommu_init.c
> @@ -428,8 +428,6 @@ static void cf_check iommu_msi_mask(stru
> unsigned long flags;
> struct amd_iommu *iommu = desc->action->dev_id;
>
> - irq_complete_move(desc);
> -
> spin_lock_irqsave(&iommu->lock, flags);
> amd_iommu_msi_enable(iommu, IOMMU_CONTROL_DISABLED);
> spin_unlock_irqrestore(&iommu->lock, flags);
> @@ -442,6 +440,13 @@ static unsigned int cf_check iommu_msi_s
> return 0;
> }
>
> +static void cf_check iommu_msi_ack(struct irq_desc *desc)
> +{
> + irq_complete_move(desc);
> + iommu_msi_mask(desc);
> + move_masked_irq(desc);
> +}
> +
> static void cf_check iommu_msi_end(struct irq_desc *desc, u8 vector)
> {
> iommu_msi_unmask(desc);
> @@ -455,7 +460,7 @@ static hw_irq_controller iommu_msi_type
> .shutdown = iommu_msi_mask,
> .enable = iommu_msi_unmask,
> .disable = iommu_msi_mask,
> - .ack = iommu_msi_mask,
> + .ack = iommu_msi_ack,
> .end = iommu_msi_end,
> .set_affinity = set_msi_affinity,
> };
[-- Attachment #2: Type: text/html, Size: 2329 bytes --]
prev parent reply other threads:[~2025-10-21 10:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-20 14:16 [PATCH for-4.21?] AMD/IOMMU: unshare IRQ .ack and .disable handlers Jan Beulich
2025-10-20 15:02 ` Andrew Cooper
2025-10-21 9:48 ` Roger Pau Monné
2025-10-21 9:59 ` Jan Beulich
2025-10-21 10:02 ` Jan Beulich
2025-10-21 10:43 ` Oleksii Kurochko [this message]
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=2b49df90-ac99-4bf7-bf60-fc8358b63eb2@gmail.com \
--to=oleksii.kurochko@gmail.com \
--cc=andrew.cooper3@citrix.com \
--cc=jason.andryuk@amd.com \
--cc=jbeulich@suse.com \
--cc=roger.pau@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/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;
as well as URLs for NNTP newsgroup(s).