PCI/MSI: Use msi_domain_alloc/free_irqs_all_locked()
authorThomas Gleixner <tglx@linutronix.de>
Thu, 24 Nov 2022 23:24:36 +0000 (00:24 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 5 Dec 2022 18:21:00 +0000 (19:21 +0100)
Switch to the new domain id aware interfaces to phase out the previous
ones. No functional change.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20221124230314.455168748@linutronix.de
drivers/pci/msi/irqdomain.c

index dea2e8c4dfa47aac9f2a9d742e6cbe50c0b23aad..f4338fb42c2d175fbf58cee126a6ef6db01a96b2 100644 (file)
@@ -14,7 +14,7 @@ int pci_msi_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
 
        domain = dev_get_msi_domain(&dev->dev);
        if (domain && irq_domain_is_hierarchy(domain))
-               return msi_domain_alloc_irqs_descs_locked(domain, &dev->dev, nvec);
+               return msi_domain_alloc_irqs_all_locked(&dev->dev, MSI_DEFAULT_DOMAIN, nvec);
 
        return pci_msi_legacy_setup_msi_irqs(dev, nvec, type);
 }
@@ -25,7 +25,7 @@ void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
 
        domain = dev_get_msi_domain(&dev->dev);
        if (domain && irq_domain_is_hierarchy(domain)) {
-               msi_domain_free_irqs_descs_locked(domain, &dev->dev);
+               msi_domain_free_irqs_all_locked(&dev->dev, MSI_DEFAULT_DOMAIN);
        } else {
                pci_msi_legacy_teardown_msi_irqs(dev);
                msi_free_msi_descs(&dev->dev);