summaryrefslogtreecommitdiff
path: root/linktype.h
AgeCommit message (Expand)AuthorFilesLines
2015-06-18linktype: Add LINKTYPE_LINUX_SLL.Vadim Kochan1-0/+1
2015-04-13netsniff-ng: Consider radiotap header of monitor devVadim Kochan1-0/+1
2014-04-14dissector: Get rid of header dependency on pcap_io.hTobias Klauser1-0/+33
unified
Diffstat
/noscript>
authorLukas Wunner <lukas@wunner.de>2016-05-02 13:48:25 -0500
committerBjorn Helgaas <bhelgaas@google.com>2016-05-02 13:48:25 -0500
commit1e398eae8407abdc02cde8a449b14d17ed193d56 (patch)
tree58726e551ae0412004dbaeff0ac85eeb06b3e8da /Documentation/translations
parent67e658794ca191b3221b143f2a1c10d002c40bc8 (diff)
PCI: Fix BUG on device attach failure
Previously when pci_bus_add_device() called device_attach() and it returned a negative value, we emitted a WARN but carried on. Commit ab1a187bba5c ("PCI: Check device_attach() return value always"), introduced in Linux 4.6-rc1, changed this to unwind all steps preceding device_attach() and to not set dev->is_added = 1. The latter leads to a BUG if pci_bus_add_device() was called from pci_bus_add_devices(). Fix by not recursing to a child bus if device_attach() failed for the bridge leading to it. This can be triggered by plugging in a PCI device (e.g. Thunderbolt) while the system is asleep. The system locks up when woken because device_attach() returns -EPROBE_DEFER. Fixes: ab1a187bba5c ("PCI: Check device_attach() return value always") Signed-off-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'Documentation/translations')