PCI: Disable Bus Master unconditionally in pci_device_shutdown()
authorKonstantin Khlebnikov <khlebnikov@openvz.org>
Mon, 4 Feb 2013 11:55:58 +0000 (15:55 +0400)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 11 Feb 2013 23:28:50 +0000 (16:28 -0700)
commit7897e6022761ace7377f0f784fca059da55f5d71
tree04244374433d2bd91011da0d6eb785ecfe72e24d
parentd1c3ed669a2d452cacfb48c2d171a1f364dae2ed
PCI: Disable Bus Master unconditionally in pci_device_shutdown()

Commit b566a22c23 ("PCI: disable Bus Master on PCI device shutdown")
used pci_disable_device(), but that doesn't disable Bus Mastering
unconditionally; we allow nested enable/disable calls, and only the
last disable call actually does anything.

This uses pci_clear_master() to unconditionally clear the Bus Master
bit.

Matthew Garrett and Alan Cox said (see LKML link below) that clearing Bus
Master for all PCI devices may lead to unpredictable consequences: some
devices ignores this bit and continue DMA, some of them hang after that or
crash the whole system.  But we're already trying to clear Bus Master in
general because of b566a22c23; this merely deals with the cases where
drivers haven't shut down the device correctly.

[bhelgaas: changelog]
Link: https://lkml.org/lkml/2012/6/6/278
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/pci/pci-driver.c