]> Git Repo - linux.git/commit
PCI: Make pci_stop_dev() concurrent safe
authorKeith Busch <[email protected]>
Tue, 22 Oct 2024 22:48:47 +0000 (15:48 -0700)
committerBjorn Helgaas <[email protected]>
Mon, 11 Nov 2024 19:05:50 +0000 (13:05 -0600)
commit93093ea1f05928b123dae38b710631362bef1601
treed4878a521c9687541a9b9c69da0e4ed8c70434b7
parent9852d85ec9d492ebef56dc5f229416c925758edc
PCI: Make pci_stop_dev() concurrent safe

Use the atomic ADDED flag to ensure concurrent callers can't attempt to
stop the device multiple times. Callers should currently all be holding the
pci_rescan_remove_lock, so there shouldn't be an existing race. But that
global lock can cause lock dependency issues, so this is preparing to
reduce reliance on that lock by using the existing existing atomic bit ops.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Keith Busch <[email protected]>
[bhelgaas: squash https://lore.kernel.org/r/20241111180659.3321671[email protected]]
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
drivers/pci/bus.c
drivers/pci/pci.h
drivers/pci/remove.c
This page took 0.056096 seconds and 4 git commands to generate.