PCI/ERR: Simplify by computing pci_pcie_type() once
authorSean V Kelley <sean.v.kelley@intel.com>
Sat, 21 Nov 2020 00:10:27 +0000 (16:10 -0800)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 4 Dec 2020 17:18:58 +0000 (11:18 -0600)
Instead of calling pci_pcie_type(dev) twice, call it once and save the
result.  No functional change intended.

Link: https://lore.kernel.org/r/20201121001036.8560-7-sean.v.kelley@intel.com
Tested-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> # non-native/no RCEC
Signed-off-by: Sean V Kelley <sean.v.kelley@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/pci/pcie/aer.c
drivers/pci/pcie/err.c
drivers/pci/pcie/portdrv_pci.c

index 6fe2d4e..0ba0b47 100644 (file)
@@ -1034,6 +1034,7 @@ EXPORT_SYMBOL_GPL(aer_recover_queue);
  */
 int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info)
 {
+       int type = pci_pcie_type(dev);
        int aer = dev->aer_cap;
        int temp;
 
@@ -1052,8 +1053,8 @@ int aer_get_device_error_info(struct pci_dev *dev, struct aer_err_info *info)
                        &info->mask);
                if (!(info->status & ~info->mask))
                        return 0;
-       } else if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
-                  pci_pcie_type(dev) == PCI_EXP_TYPE_DOWNSTREAM ||
+       } else if (type == PCI_EXP_TYPE_ROOT_PORT ||
+                  type == PCI_EXP_TYPE_DOWNSTREAM ||
                   info->severity == AER_NONFATAL) {
 
                /* Link is still healthy for IO reads */
index 05f61da..7a5af87 100644 (file)
@@ -150,6 +150,7 @@ pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
                pci_channel_state_t state,
                pci_ers_result_t (*reset_subordinates)(struct pci_dev *pdev))
 {
+       int type = pci_pcie_type(dev);
        pci_ers_result_t status = PCI_ERS_RESULT_CAN_RECOVER;
        struct pci_bus *bus;
 
@@ -157,8 +158,8 @@ pci_ers_result_t pcie_do_recovery(struct pci_dev *dev,
         * Error recovery runs on all subordinates of the first downstream port.
         * If the downstream port detected the error, it is cleared at the end.
         */
-       if (!(pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
-             pci_pcie_type(dev) == PCI_EXP_TYPE_DOWNSTREAM))
+       if (!(type == PCI_EXP_TYPE_ROOT_PORT ||
+             type == PCI_EXP_TYPE_DOWNSTREAM))
                dev = pci_upstream_bridge(dev);
        bus = dev->subordinate;
 
index 4d88067..ff9517e 100644 (file)
@@ -101,13 +101,14 @@ static const struct dev_pm_ops pcie_portdrv_pm_ops = {
 static int pcie_portdrv_probe(struct pci_dev *dev,
                                        const struct pci_device_id *id)
 {
+       int type = pci_pcie_type(dev);
        int status;
 
        if (!pci_is_pcie(dev) ||
-           ((pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT) &&
-            (pci_pcie_type(dev) != PCI_EXP_TYPE_UPSTREAM) &&
-            (pci_pcie_type(dev) != PCI_EXP_TYPE_DOWNSTREAM) &&
-            (pci_pcie_type(dev) != PCI_EXP_TYPE_RC_EC)))
+           ((type != PCI_EXP_TYPE_ROOT_PORT) &&
+            (type != PCI_EXP_TYPE_UPSTREAM) &&
+            (type != PCI_EXP_TYPE_DOWNSTREAM) &&
+            (type != PCI_EXP_TYPE_RC_EC)))
                return -ENODEV;
 
        status = pcie_port_device_register(dev);