]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
PCI: hv: Switch MSI descriptor locking to guard()
authorThomas Gleixner <tglx@linutronix.de>
Wed, 19 Mar 2025 10:56:55 +0000 (11:56 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 9 Apr 2025 18:47:30 +0000 (20:47 +0200)
Convert the code to use the new guard(msi_descs_lock).

No functional change intended.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Acked-by: Wei Liu <wei.liu@kernel.org>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Link: https://lore.kernel.org/all/20250319105506.624838146@linutronix.de
drivers/pci/controller/pci-hyperv.c

index ac27bda5ba269493c000fdc7d4cbd21819630bf0..e1eaa24559a2af7a6ac85780a8aab3b9e8d30c1e 100644 (file)
@@ -3975,24 +3975,18 @@ static int hv_pci_restore_msi_msg(struct pci_dev *pdev, void *arg)
 {
        struct irq_data *irq_data;
        struct msi_desc *entry;
-       int ret = 0;
 
        if (!pdev->msi_enabled && !pdev->msix_enabled)
                return 0;
 
-       msi_lock_descs(&pdev->dev);
+       guard(msi_descs_lock)(&pdev->dev);
        msi_for_each_desc(entry, &pdev->dev, MSI_DESC_ASSOCIATED) {
                irq_data = irq_get_irq_data(entry->irq);
-               if (WARN_ON_ONCE(!irq_data)) {
-                       ret = -EINVAL;
-                       break;
-               }
-
+               if (WARN_ON_ONCE(!irq_data))
+                       return -EINVAL;
                hv_compose_msi_msg(irq_data, &entry->msg);
        }
-       msi_unlock_descs(&pdev->dev);
-
-       return ret;
+       return 0;
 }
 
 /*