Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pci-v4.18-fixes-4' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci

Pull PCI fix from Bjorn Helgaas:
"Fix a use-after-free error in fatal error recovery (Thomas Tai)"

* tag 'pci-v4.18-fixes-4' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci:
PCI/AER: Work around use-after-free in pcie_do_fatal_recovery()

+2
+2
drivers/pci/pcie/err.c
··· 295 295 296 296 parent = udev->subordinate; 297 297 pci_lock_rescan_remove(); 298 + pci_dev_get(dev); 298 299 list_for_each_entry_safe_reverse(pdev, temp, &parent->devices, 299 300 bus_list) { 300 301 pci_dev_get(pdev); ··· 329 328 pci_info(dev, "Device recovery from fatal error failed\n"); 330 329 } 331 330 331 + pci_dev_put(dev); 332 332 pci_unlock_rescan_remove(); 333 333 } 334 334