diff options
author | Yinghai Lu <yinghai@kernel.org> | 2013-05-07 16:35:44 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-05-07 16:35:44 -0400 |
commit | e253aaf0af51c1e4dc7dd3b26ea8e666bf9a2d8d (patch) | |
tree | 1e108b6df63cd51372246fdc2281cffaa548b6a1 /drivers/pci | |
parent | dd72be99d11dbf738d910a38479ce414a51eb21e (diff) |
PCI: Delay final fixups until resources are assigned
Commit 4f535093cf "PCI: Put pci_dev in device tree as early as possible"
moved final fixups from pci_bus_add_device() to pci_device_add(). But
pci_device_add() happens before resource assignment, so BARs may not be
valid yet.
Typical flow for hot-add:
pciehp_configure_device
pci_scan_slot
pci_scan_single_device
pci_device_add
pci_fixup_device(pci_fixup_final, dev) # previous location
# resource assignment happens here
pci_bus_add_devices
pci_bus_add_device
pci_fixup_device(pci_fixup_final, dev) # new location
[bhelgaas: changelog, move fixups to pci_bus_add_device()]
Reference: https://lkml.kernel.org/r/20130415182614.GB9224@xanatos
Reported-by: David Bulkow <David.Bulkow@stratus.com>
Tested-by: David Bulkow <David.Bulkow@stratus.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
CC: stable@vger.kernel.org # v3.9+
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/bus.c | 1 | ||||
-rw-r--r-- | drivers/pci/probe.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/bus.c b/drivers/pci/bus.c index 748f8f3e9ff5..32e66a6f12d9 100644 --- a/drivers/pci/bus.c +++ b/drivers/pci/bus.c | |||
@@ -174,6 +174,7 @@ int pci_bus_add_device(struct pci_dev *dev) | |||
174 | * Can not put in pci_device_add yet because resources | 174 | * Can not put in pci_device_add yet because resources |
175 | * are not assigned yet for some devices. | 175 | * are not assigned yet for some devices. |
176 | */ | 176 | */ |
177 | pci_fixup_device(pci_fixup_final, dev); | ||
177 | pci_create_sysfs_dev_files(dev); | 178 | pci_create_sysfs_dev_files(dev); |
178 | 179 | ||
179 | dev->match_driver = true; | 180 | dev->match_driver = true; |
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 43ece5d41d36..67cd04575e2e 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -1341,7 +1341,6 @@ void pci_device_add(struct pci_dev *dev, struct pci_bus *bus) | |||
1341 | list_add_tail(&dev->bus_list, &bus->devices); | 1341 | list_add_tail(&dev->bus_list, &bus->devices); |
1342 | up_write(&pci_bus_sem); | 1342 | up_write(&pci_bus_sem); |
1343 | 1343 | ||
1344 | pci_fixup_device(pci_fixup_final, dev); | ||
1345 | ret = pcibios_add_device(dev); | 1344 | ret = pcibios_add_device(dev); |
1346 | WARN_ON(ret < 0); | 1345 | WARN_ON(ret < 0); |
1347 | 1346 | ||