Skip to content

Commit 9fef768

Browse files
committed
Merge branch 'pci/iommu'
- Fix a Time-of-Check to Time-of-Use issue when testing driver_managed_dma in the IOMMU probe path (Robin Murphy) * pci/iommu: PCI: Fix driver_managed_dma check
2 parents 0e14288 + 78447d4 commit 9fef768

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/pci/pci-driver.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,7 +1628,7 @@ static int pci_bus_num_vf(struct device *dev)
16281628
*/
16291629
static int pci_dma_configure(struct device *dev)
16301630
{
1631-
struct pci_driver *driver = to_pci_driver(dev->driver);
1631+
const struct device_driver *drv = READ_ONCE(dev->driver);
16321632
struct device *bridge;
16331633
int ret = 0;
16341634

@@ -1645,8 +1645,8 @@ static int pci_dma_configure(struct device *dev)
16451645

16461646
pci_put_host_bridge_device(bridge);
16471647

1648-
/* @driver may not be valid when we're called from the IOMMU layer */
1649-
if (!ret && dev->driver && !driver->driver_managed_dma) {
1648+
/* @drv may not be valid when we're called from the IOMMU layer */
1649+
if (!ret && drv && !to_pci_driver(drv)->driver_managed_dma) {
16501650
ret = iommu_device_use_default_domain(dev);
16511651
if (ret)
16521652
arch_teardown_dma_ops(dev);

0 commit comments

Comments
 (0)