Skip to content

Commit

Permalink
PCI: Remove reset_fn field from pci_dev
Browse files Browse the repository at this point in the history
"reset_fn" indicates whether the device supports any reset mechanism.
Remove the use of reset_fn in favor of the reset_methods array that tracks
supported reset mechanisms of a device and their ordering.

The octeon driver incorrectly used reset_fn to detect whether the device
supports FLR or not. Use pcie_reset_flr() to probe whether it supports FLR.

Co-developed-by: Alex Williamson <alex.williamson@redhat.com>
Link: https://lore.kernel.org/r/20210817180500.1253-5-ameynarkhede03@gmail.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Amey Narkhede <ameynarkhede03@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
Reviewed-by: Raphael Norwitz <raphael.norwitz@nutanix.com>
  • Loading branch information
Amey Narkhede authored and Bjorn Helgaas committed Aug 17, 2021
1 parent e20afa0 commit 4ec36df
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/cavium/liquidio/lio_vf_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ static void octeon_destroy_resources(struct octeon_device *oct)
oct->irq_name_storage = NULL;
}
/* Soft reset the octeon device before exiting */
if (oct->pci_dev->reset_fn)
if (!pcie_reset_flr(oct->pci_dev, 1))
octeon_pci_flr(oct);
else
cn23xx_vf_ask_pf_to_do_flr(oct);
Expand Down
2 changes: 1 addition & 1 deletion drivers/pci/pci-sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ static umode_t pci_dev_reset_attr_is_visible(struct kobject *kobj,
{
struct pci_dev *pdev = to_pci_dev(kobj_to_dev(kobj));

if (!pdev->reset_fn)
if (!pci_reset_supported(pdev))
return 0;

return a->mode;
Expand Down
6 changes: 3 additions & 3 deletions drivers/pci/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -5234,7 +5234,7 @@ int pci_reset_function(struct pci_dev *dev)
{
int rc;

if (!dev->reset_fn)
if (!pci_reset_supported(dev))
return -ENOTTY;

pci_dev_lock(dev);
Expand Down Expand Up @@ -5270,7 +5270,7 @@ int pci_reset_function_locked(struct pci_dev *dev)
{
int rc;

if (!dev->reset_fn)
if (!pci_reset_supported(dev))
return -ENOTTY;

pci_dev_save_and_disable(dev);
Expand All @@ -5293,7 +5293,7 @@ int pci_try_reset_function(struct pci_dev *dev)
{
int rc;

if (!dev->reset_fn)
if (!pci_reset_supported(dev))
return -ENOTTY;

if (!pci_dev_trylock(dev))
Expand Down
1 change: 0 additions & 1 deletion drivers/pci/probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -2430,7 +2430,6 @@ static void pci_init_capabilities(struct pci_dev *dev)

pcie_report_downtraining(dev);
pci_init_reset_methods(dev);
dev->reset_fn = pci_reset_supported(dev);
}

/*
Expand Down
2 changes: 1 addition & 1 deletion drivers/pci/quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -5626,7 +5626,7 @@ static void quirk_reset_lenovo_thinkpad_p50_nvgpu(struct pci_dev *pdev)

if (pdev->subsystem_vendor != PCI_VENDOR_ID_LENOVO ||
pdev->subsystem_device != 0x222e ||
!pdev->reset_fn)
!pci_reset_supported(pdev))
return;

if (pci_enable_device_mem(pdev))
Expand Down
1 change: 0 additions & 1 deletion drivers/pci/remove.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ static void pci_stop_dev(struct pci_dev *dev)
pci_pme_active(dev, false);

if (pci_dev_is_added(dev)) {
dev->reset_fn = 0;

device_release_driver(&dev->dev);
pci_proc_detach_device(dev);
Expand Down
1 change: 0 additions & 1 deletion include/linux/pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,6 @@ struct pci_dev {
unsigned int state_saved:1;
unsigned int is_physfn:1;
unsigned int is_virtfn:1;
unsigned int reset_fn:1;
unsigned int is_hotplug_bridge:1;
unsigned int shpc_managed:1; /* SHPC owned by shpchp */
unsigned int is_thunderbolt:1; /* Thunderbolt controller */
Expand Down

0 comments on commit 4ec36df

Please sign in to comment.