Skip to content

Commit 5260bd6

Browse files
committed
Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset"
This reverts commit d5af729. d5af729 ("PCI: Mark NVIDIA T4 GPUs to avoid bus reset") avoided Secondary Bus Reset on the T4 because the reset seemed to not work when the T4 was directly attached to a Root Port. But NVIDIA thinks the issue is probably related to some issue with the Root Port, not with the T4. The T4 provides neither PM nor FLR reset, so masking bus reset compromises this device for assignment scenarios. Revert d5af729 as requested by Wu Zongyong. This will leave SBR broken in the specific configuration Wu tested, as it was in v6.5, so Wu will debug that further. Link: https://lore.kernel.org/r/ZPqMCDWvITlOLHgJ@wuzongyong-alibaba Link: https://lore.kernel.org/r/20230908201104.GA305023@bhelgaas Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
1 parent 8ec9c1d commit 5260bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pci/quirks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3726,7 +3726,7 @@ static void quirk_no_bus_reset(struct pci_dev *dev)
37263726
*/
37273727
static void quirk_nvidia_no_bus_reset(struct pci_dev *dev)
37283728
{
3729-
if ((dev->device & 0xffc0) == 0x2340 || dev->device == 0x1eb8)
3729+
if ((dev->device & 0xffc0) == 0x2340)
37303730
quirk_no_bus_reset(dev);
37313731
}
37323732
DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,

0 commit comments

Comments
 (0)