Commit 811c5cb3 authored by Sinan Kaya's avatar Sinan Kaya Committed by Bjorn Helgaas

PCI: Unify try slot and bus reset API

Drivers are expected to call pci_try_reset_slot() or pci_try_reset_bus() by
querying if a system supports hotplug or not.  A survey showed that most
drivers don't do this and we are leaking hotplug capability to the user.

Hide pci_try_slot_reset() from drivers and embed into pci_try_bus_reset().
Change pci_try_reset_bus() parameter from struct pci_bus to struct pci_dev.
Signed-off-by: default avatarSinan Kaya <okaya@codeaurora.org>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 381634ca
...@@ -905,7 +905,7 @@ static int trigger_sbr(struct hfi1_devdata *dd) ...@@ -905,7 +905,7 @@ static int trigger_sbr(struct hfi1_devdata *dd)
* delay after a reset is required. Per spec requirements, * delay after a reset is required. Per spec requirements,
* the link is either working or not after that point. * the link is either working or not after that point.
*/ */
return pci_try_reset_bus(dev->bus); return pci_try_reset_bus(dev);
} }
/* /*
......
...@@ -4817,12 +4817,12 @@ int pci_reset_slot(struct pci_slot *slot) ...@@ -4817,12 +4817,12 @@ int pci_reset_slot(struct pci_slot *slot)
EXPORT_SYMBOL_GPL(pci_reset_slot); EXPORT_SYMBOL_GPL(pci_reset_slot);
/** /**
* pci_try_reset_slot - Try to reset a PCI slot * __pci_try_reset_slot - Try to reset a PCI slot
* @slot: PCI slot to reset * @slot: PCI slot to reset
* *
* Same as above except return -EAGAIN if the slot cannot be locked * Same as above except return -EAGAIN if the slot cannot be locked
*/ */
int pci_try_reset_slot(struct pci_slot *slot) static int __pci_try_reset_slot(struct pci_slot *slot)
{ {
int rc; int rc;
...@@ -4843,7 +4843,6 @@ int pci_try_reset_slot(struct pci_slot *slot) ...@@ -4843,7 +4843,6 @@ int pci_try_reset_slot(struct pci_slot *slot)
return rc; return rc;
} }
EXPORT_SYMBOL_GPL(pci_try_reset_slot);
static int pci_bus_reset(struct pci_bus *bus, int probe) static int pci_bus_reset(struct pci_bus *bus, int probe)
{ {
...@@ -4906,12 +4905,12 @@ int pci_reset_bus(struct pci_bus *bus) ...@@ -4906,12 +4905,12 @@ int pci_reset_bus(struct pci_bus *bus)
EXPORT_SYMBOL_GPL(pci_reset_bus); EXPORT_SYMBOL_GPL(pci_reset_bus);
/** /**
* pci_try_reset_bus - Try to reset a PCI bus * __pci_try_reset_bus - Try to reset a PCI bus
* @bus: top level PCI bus to reset * @bus: top level PCI bus to reset
* *
* Same as above except return -EAGAIN if the bus cannot be locked * Same as above except return -EAGAIN if the bus cannot be locked
*/ */
int pci_try_reset_bus(struct pci_bus *bus) static int __pci_try_reset_bus(struct pci_bus *bus)
{ {
int rc; int rc;
...@@ -4932,6 +4931,18 @@ int pci_try_reset_bus(struct pci_bus *bus) ...@@ -4932,6 +4931,18 @@ int pci_try_reset_bus(struct pci_bus *bus)
return rc; return rc;
} }
/**
* pci_try_reset_bus - Try to reset a PCI bus
* @pdev: top level PCI device to reset via slot/bus
*
* Same as above except return -EAGAIN if the bus cannot be locked
*/
int pci_try_reset_bus(struct pci_dev *pdev)
{
return pci_probe_reset_slot(pdev->slot) ?
__pci_try_reset_slot(pdev->slot) : __pci_try_reset_bus(pdev->bus);
}
EXPORT_SYMBOL_GPL(pci_try_reset_bus); EXPORT_SYMBOL_GPL(pci_try_reset_bus);
/** /**
......
...@@ -1010,8 +1010,7 @@ static long vfio_pci_ioctl(void *device_data, ...@@ -1010,8 +1010,7 @@ static long vfio_pci_ioctl(void *device_data,
&info, slot); &info, slot);
if (!ret) if (!ret)
/* User has access, do the reset */ /* User has access, do the reset */
ret = slot ? pci_try_reset_slot(vdev->pdev->slot) : ret = pci_try_reset_bus(vdev->pdev);
pci_try_reset_bus(vdev->pdev->bus);
hot_reset_release: hot_reset_release:
for (i--; i >= 0; i--) for (i--; i >= 0; i--)
...@@ -1373,8 +1372,7 @@ static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev) ...@@ -1373,8 +1372,7 @@ static void vfio_pci_try_bus_reset(struct vfio_pci_device *vdev)
} }
if (needs_reset) if (needs_reset)
ret = slot ? pci_try_reset_slot(vdev->pdev->slot) : ret = pci_try_reset_bus(vdev->pdev);
pci_try_reset_bus(vdev->pdev->bus);
put_devs: put_devs:
for (i = 0; i < devs.cur_index; i++) { for (i = 0; i < devs.cur_index; i++) {
......
...@@ -1097,10 +1097,9 @@ int pci_reset_function_locked(struct pci_dev *dev); ...@@ -1097,10 +1097,9 @@ int pci_reset_function_locked(struct pci_dev *dev);
int pci_try_reset_function(struct pci_dev *dev); int pci_try_reset_function(struct pci_dev *dev);
int pci_probe_reset_slot(struct pci_slot *slot); int pci_probe_reset_slot(struct pci_slot *slot);
int pci_reset_slot(struct pci_slot *slot); int pci_reset_slot(struct pci_slot *slot);
int pci_try_reset_slot(struct pci_slot *slot);
int pci_probe_reset_bus(struct pci_bus *bus); int pci_probe_reset_bus(struct pci_bus *bus);
int pci_reset_bus(struct pci_bus *bus); int pci_reset_bus(struct pci_bus *bus);
int pci_try_reset_bus(struct pci_bus *bus); int pci_try_reset_bus(struct pci_dev *dev);
void pci_reset_secondary_bus(struct pci_dev *dev); void pci_reset_secondary_bus(struct pci_dev *dev);
void pcibios_reset_secondary_bus(struct pci_dev *dev); void pcibios_reset_secondary_bus(struct pci_dev *dev);
void pci_update_resource(struct pci_dev *dev, int resno); void pci_update_resource(struct pci_dev *dev, int resno);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment