From: Naman Jain <namjain@linux.microsoft.com>
To: "Thomas Gleixner" <tglx@kernel.org>,
"Michael Kelley" <mhklinux@outlook.com>,
"Ingo Molnar" <mingo@redhat.com>,
"Borislav Petkov" <bp@alien8.de>,
"Dave Hansen" <dave.hansen@linux.intel.com>,
"x86@kernel.org" <x86@kernel.org>,
"Joerg Roedel (AMD)" <joro@8bytes.org>,
"Will Deacon" <will@kernel.org>,
"K. Y. Srinivasan" <kys@microsoft.com>,
"Haiyang Zhang" <haiyangz@microsoft.com>,
"Wei Liu" <wei.liu@kernel.org>,
"Dexuan Cui" <decui@microsoft.com>,
"Long Li" <longli@microsoft.com>,
"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
"Manivannan Sadhasivam" <mani@kernel.org>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"namcao@linutronix.de" <namcao@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>,
Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>,
Vasant Hegde <vasant.hegde@amd.com>,
Robin Murphy <robin.murphy@arm.com>,
Rob Herring <robh@kernel.org>,
Shradha Gupta <shradhagupta@linux.microsoft.com>,
Aditya Garg <gargaditya@linux.microsoft.com>,
"iommu@lists.linux.dev" <iommu@lists.linux.dev>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 3/3] x86/irq, iommu/amd, PCI: Drop redundant irq_retrigger inits
Date: Mon, 14 Sep 2026 15:57:49 +0530 [thread overview]
Message-ID: <28e42462-732b-4d58-bcdb-cc9378eb134d@linux.microsoft.com> (raw)
In-Reply-To: <87y0d6xpan.ffs@fw13>
On 9/13/2026 12:36 AM, Thomas Gleixner wrote:
> On Fri, Sep 11 2026 at 16:32, Michael Kelley wrote:
>> From: Thomas Gleixner <tglx@kernel.org> Sent: Friday, September 11, 2026 1:12 AM
>> As for the future, you may remember my RFC patch set from a couple
>> years ago for the Synthetic Interrupt Controller (SynIC) that Hyper-V
>> provides to guests. The SynIC currently has special case nodes under
>> /sys/bus/vmbus to manage CPU affinity. As a better approach, the patch
>> set modelled the SynIC as an irqchip so standard Linux mechanisms could
>> manage affinity. You and I corresponded about per-cpu flow handler
>> tweaks to make it all work. The RFC patch set didn't get traction with
>> the Microsoft folks and I didn't push it. But it had a stand-alone IRQ
>> domain not parented to VECTOR because Hyper-V interrupts are hard
>> coded to HYPERVISOR_CALLBACK_VECTOR. As a stand-alone domain,
>> a .irq_retrigger function might have been useful in fixup_irqs(). That's
>> all speculative, but it was in the back of my head when I suggested to
>> Naman that the outermost chip .irq_retrigger function should be
>> checked. I'm fine with not doing that check now, and if a future case
>> like the Hyper-V SynIC arises, the check can be added.
>
> It doesn't because that domain is not parented by the vector domain, so
> interrupts in that domain cannot have a descriptor in the descriptor
> array and neither will end up in msi_set_affinity().
>
> These interrupts are handled in the generic cpuhotplug mechanism.
>
> fixup_irqs() is really only about the vector domain to handle the case
> where an interrupt was raised on the old vector on the outgoing CPU
> before the generic hotplug affinity change took effect.
>
>>> Devices might have a way to retrigger at the device level, but that's
>>> not reachable from the interrupt chip.
>>>
>>> So both places fixup_irq() and msi_set_affinity() can use retrigger
>>> hierarchy safely without the conditional checking the outermost domain
>>> chip.
>>
>> And setting .irq_retrigger in x86_init_dev_msi_info() becomes
>> superfluous, right?
>
> Yes.
>
> Thanks,
>
> tglx
I'll remove the conditional check in next version at both of the places.
Thanks.
Regards,
Naman
prev parent reply other threads:[~2026-09-14 10:28 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-10 9:07 [PATCH v2 0/3] x86/irq: Fix lost interrupts on CPU hot-unplug for Hyper-V PCI/MSI Naman Jain
2026-08-10 9:07 ` [PATCH v2 1/3] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Naman Jain
2026-08-17 3:38 ` Michael Kelley
2026-08-17 12:15 ` Naman Jain
2026-08-17 15:30 ` Naman Jain
2026-08-17 17:14 ` Michael Kelley
2026-08-18 5:10 ` Michael Kelley
2026-08-24 0:22 ` Wei Liu
2026-08-10 9:07 ` [PATCH v2 2/3] x86/irq: Use irq_chip_retrigger_hierarchy() in fixup_irqs() Naman Jain
2026-08-18 5:10 ` Michael Kelley
2026-08-18 7:31 ` Naman Jain
2026-08-19 15:59 ` Michael Kelley
2026-08-20 4:47 ` Naman Jain
2026-08-20 4:53 ` Michael Kelley
2026-09-09 9:43 ` Thomas Gleixner
2026-08-10 9:07 ` [PATCH v2 3/3] x86/irq, iommu/amd, PCI: Drop redundant irq_retrigger inits Naman Jain
2026-08-18 5:10 ` Michael Kelley
2026-08-18 7:31 ` Naman Jain
2026-09-09 10:24 ` Thomas Gleixner
2026-09-10 18:51 ` Michael Kelley
2026-09-11 8:11 ` Thomas Gleixner
2026-09-11 16:32 ` Michael Kelley
2026-09-12 19:06 ` Thomas Gleixner
2026-09-14 10:27 ` Naman Jain [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=28e42462-732b-4d58-bcdb-cc9378eb134d@linux.microsoft.com \
--to=namjain@linux.microsoft.com \
--cc=bhelgaas@google.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=decui@microsoft.com \
--cc=gargaditya@linux.microsoft.com \
--cc=haiyangz@microsoft.com \
--cc=hpa@zytor.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=kwilczynski@kernel.org \
--cc=kys@microsoft.com \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=longli@microsoft.com \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=mhklinux@outlook.com \
--cc=mingo@redhat.com \
--cc=namcao@linutronix.de \
--cc=robh@kernel.org \
--cc=robin.murphy@arm.com \
--cc=shradhagupta@linux.microsoft.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=tglx@kernel.org \
--cc=vasant.hegde@amd.com \
--cc=wei.liu@kernel.org \
--cc=will@kernel.org \
--cc=x86@kernel.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
all inboxes | Powered by JetHome®