Re: [EXTERNAL] [PATCH 2/3] PCI: hv: unmap MSI interrupt on the nested root partition teardown path

From: Wei Liu

Date: Wed Aug 26 2026 - 17:32:26 EST


On Tue, Aug 25, 2026 at 08:12:33PM +0000, Long Li wrote:
[...]
> > +static void hv_vmbus_unmap_msi_interrupt(struct pci_dev *pdev
> > __maybe_unused,
> > + void *chip_data)
> > +{
> > + struct hv_msi_int_entry *ie = chip_data;
> > +
> > + if (!ie || !ie->hv_entry.source)
> > + return;
> > +#ifdef CONFIG_X86
> > + hv_unmap_msi_interrupt(pdev, &ie->hv_entry); #endif
>
> Since you don't want to check the return value from
> hv_unmap_msi_interrupt(), add a (void) to the front to prevent some
> tools from giving warnings.

No problem. Thanks for your review.

Wei