@@ -897,7 +897,7 @@ static int trigger_sbr(struct hfi1_devdata *dd)
* to be implemented to have cleaner interface but this fixes the
* current brokenness
*/
- return pci_reset_function_locked(dev, PCI_RESET_LINK, false);
+ return pci_reset_function(dev, PCI_RESET_LINK, false, true);
}
/*
@@ -989,7 +989,7 @@ static void octeon_pci_flr(struct octeon_device *oct)
pci_write_config_word(oct->pci_dev, PCI_COMMAND,
PCI_COMMAND_INTX_DISABLE);
- rc = pci_reset_function_locked(oct->pci_dev, PCI_RESET_ANY, false);
+ rc = pci_reset_function(oct->pci_dev, PCI_RESET_ANY, false, true);
if (rc != 0)
dev_err(&oct->pci_dev->dev, "Error %d resetting PCI function %d\n",
@@ -36,6 +36,8 @@ int pci_mmap_fits(struct pci_dev *pdev, int resno, struct vm_area_struct *vmai,
int pci_probe_reset_function(struct pci_dev *dev, u32 reset_type);
int pci_bridge_secondary_bus_reset(struct pci_dev *dev);
int __pci_reset_function_locked(struct pci_dev *dev, u32 reset_type);
+int pci_reset_function_locked(struct pci_dev *dev, u32 reset_type,
+ bool saverestore);
/**
* struct pci_platform_pm_ops - Firmware PM callbacks
@@ -105,7 +105,7 @@ static void pcistub_device_release(struct kref *kref)
/* Call the reset function which does not take lock as this
* is called from "unbind" which takes a device_lock mutex.
*/
- pci_reset_function_locked(dev, PCI_RESET_ANY, false);
+ pci_reset_function(dev, PCI_RESET_ANY, false, true);
if (pci_load_and_free_saved_state(dev, &dev_data->pci_saved_state))
dev_info(&dev->dev, "Could not reload PCI state\n");
else
@@ -283,7 +283,7 @@ void pcistub_put_pci_dev(struct pci_dev *dev)
* (so it's ready for the next domain)
*/
device_lock_assert(&dev->dev);
- pci_reset_function_locked(dev, PCI_RESET_ANY, false);
+ pci_reset_function(dev, PCI_RESET_ANY, false, true);
dev_data = pci_get_drvdata(dev);
ret = pci_load_saved_state(dev, dev_data->pci_saved_state);
@@ -417,7 +417,7 @@ static int pcistub_init_device(struct pci_dev *dev)
dev_err(&dev->dev, "Could not store PCI conf saved state!\n");
else {
dev_dbg(&dev->dev, "resetting (FLR, D3, etc) the device\n");
- pci_reset_function_locked(dev, PCI_RESET_ANY, false);
+ pci_reset_function(dev, PCI_RESET_ANY, false, true);
pci_restore_state(dev);
}
/* Now disable the device (this also ensures some private device
@@ -1167,8 +1167,6 @@ bool pcie_has_flr(struct pci_dev *dev);
int pcie_flr(struct pci_dev *dev);
int pci_reset_function(struct pci_dev *dev, u32 reset_type, bool saverestore,
bool locked);
-int pci_reset_function_locked(struct pci_dev *dev, u32 reset_type,
- bool saverestore);
int pci_try_reset_function(struct pci_dev *dev, u32 reset_type);
int pci_probe_reset_slot(struct pci_slot *slot);
int pci_probe_reset_bus(struct pci_bus *bus);
It is time to hide pci_reset_function_locked() since pci_reset_function() provides the same functionality. One less API to expose to the users. Signed-off-by: Sinan Kaya <okaya@kernel.org> --- drivers/infiniband/hw/hfi1/pcie.c | 2 +- drivers/net/ethernet/cavium/liquidio/lio_main.c | 2 +- drivers/pci/pci.h | 2 ++ drivers/xen/xen-pciback/pci_stub.c | 6 +++--- include/linux/pci.h | 2 -- 5 files changed, 7 insertions(+), 7 deletions(-)