Merge tag 'pci-v6.11-fixes-4' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci

Pull pci fix from Bjorn Helgaas:

- Prevent a possible deadlock (reported by lockdep) when a driver
relinquishes a pci_dev, another driver claims it, and one uses
managed pcim_enable_device() and the other doesn't (Philipp Stanner)

* tag 'pci-v6.11-fixes-4' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci:
PCI: Fix potential deadlock in pcim_intx()

Changed files
+2
drivers
pci
+2
drivers/pci/devres.c
··· 483 483 484 484 if (!pdev->pinned) 485 485 pci_disable_device(pdev); 486 + 487 + pdev->is_managed = false; 486 488 } 487 489 488 490 /**