@@ -897,8 +897,9 @@ 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 |
- PCI_RESET_NOSAVERESTORE);
+ return pci_reset_function(dev, PCI_RESET_LINK |
+ PCI_RESET_NOSAVERESTORE |
+ PCI_RESET_ALREADY_LOCKED);
}
/*
@@ -989,9 +989,9 @@ 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 |
- PCI_RESET_NOSAVERESTORE);
-
+ rc = pci_reset_function(oct->pci_dev, PCI_RESET_ANY |
+ PCI_RESET_NOSAVERESTORE |
+ PCI_RESET_ALREADYLOCKED);
if (rc != 0)
dev_err(&oct->pci_dev->dev, "Error %d resetting PCI function %d\n",
rc, oct->pf_num);
@@ -36,6 +36,7 @@ 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);
/**
* struct pci_platform_pm_ops - Firmware PM callbacks
@@ -105,8 +105,8 @@ 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 |
- PCI_RESET_NOSAVERESTORE);
+ pci_reset_function(dev, PCI_RESET_ANY | PCI_RESET_NOSAVERESTORE |
+ PCI_RESET_ALREADY_LOCKED);
if (pci_load_and_free_saved_state(dev, &dev_data->pci_saved_state))
dev_info(&dev->dev, "Could not reload PCI state\n");
else
@@ -284,8 +284,8 @@ 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 |
- PCI_RESET_NOSAVERESTORE);
+ pci_reset_function(dev, PCI_RESET_ANY | PCI_RESET_NOSAVERESTORE |
+ PCI_RESET_ALREADYLOCKED);
dev_data = pci_get_drvdata(dev);
ret = pci_load_saved_state(dev, dev_data->pci_saved_state);
@@ -419,8 +419,9 @@ 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 |
- PCI_RESET_NOSAVERESTORE);
+ pci_reset_function(dev, PCI_RESET_ANY |
+ PCI_RESET_NOSAVERESTORE |
+ PCI_RESET_ALREADYLOCKED);
pci_restore_state(dev);
}
/* Now disable the device (this also ensures some private device
@@ -1176,7 +1176,6 @@ void pcie_print_link_status(struct pci_dev *dev);
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);
-int pci_reset_function_locked(struct pci_dev *dev, u32 reset_type);
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 | 5 +++-- drivers/net/ethernet/cavium/liquidio/lio_main.c | 6 +++--- drivers/pci/pci.h | 1 + drivers/xen/xen-pciback/pci_stub.c | 13 +++++++------ include/linux/pci.h | 1 - 5 files changed, 14 insertions(+), 12 deletions(-)