PCI/MSI: Let the MSI core free descriptors
authorAhmed S. Darwish <darwi@linutronix.de>
Fri, 11 Nov 2022 13:54:37 +0000 (14:54 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 17 Nov 2022 14:15:19 +0000 (15:15 +0100)
Let the core do the freeing of descriptors and just keep it around for the
legacy case.

Signed-off-by: Ahmed S. Darwish <darwi@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Link: https://lore.kernel.org/r/20221111122014.409654736@linutronix.de
drivers/pci/msi/irqdomain.c

index 7766fa6c475cab94c3b354aa6734d84fdeb5b3cf..edd0cc204e060424643b0d66f22e4d9851e0be1c 100644 (file)
@@ -24,11 +24,12 @@ void pci_msi_teardown_msi_irqs(struct pci_dev *dev)
        struct irq_domain *domain;
 
        domain = dev_get_msi_domain(&dev->dev);
-       if (domain && irq_domain_is_hierarchy(domain))
+       if (domain && irq_domain_is_hierarchy(domain)) {
                msi_domain_free_irqs_descs_locked(domain, &dev->dev);
-       else
+       } else {
                pci_msi_legacy_teardown_msi_irqs(dev);
-       msi_free_msi_descs(&dev->dev);
+               msi_free_msi_descs(&dev->dev);
+       }
 }
 
 /**
@@ -170,6 +171,9 @@ struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode,
        if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
                pci_msi_domain_update_chip_ops(info);
 
+       /* Let the core code free MSI descriptors when freeing interrupts */
+       info->flags |= MSI_FLAG_FREE_MSI_DESCS;
+
        info->flags |= MSI_FLAG_ACTIVATE_EARLY | MSI_FLAG_DEV_SYSFS;
        if (IS_ENABLED(CONFIG_GENERIC_IRQ_RESERVATION_MODE))
                info->flags |= MSI_FLAG_MUST_REACTIVATE;