Commit 0dad3510 authored by Satoru Takeuchi's avatar Satoru Takeuchi Committed by Greg Kroah-Hartman

acpiphp: stop bus device before acpi_bus_trim

Contrary to PCI bridge hot-add, we need to follow the sequence below
for PCI bridge hot-removal.

  (1) Stop devices (detach drivers, remove from the global list, etc.)
  (2) Unbind ACPI node from the devices (remove the _PRT entries)
  (3) Remove devices (remove from the device list, etc.)

This patch fixes acpiphp driver to follow above sequence for P2P
bridge hot-removal.
Signed-off-by: default avatarKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: default avatarMUNEDA Takahiro <muneda.takahiro@jp.fujitsu.com>
Signed-off-by: default avatarSatoru Takeuchi <takeuchi_satoru@jp.fujitsu.com>
Signed-off-by: default avatarKristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 24f8aa9b
...@@ -1129,6 +1129,9 @@ static int disable_device(struct acpiphp_slot *slot) ...@@ -1129,6 +1129,9 @@ static int disable_device(struct acpiphp_slot *slot)
func->bridge = NULL; func->bridge = NULL;
} }
if (func->pci_dev)
pci_stop_bus_device(func->pci_dev);
acpiphp_bus_trim(func->handle); acpiphp_bus_trim(func->handle);
/* try to remove anyway. /* try to remove anyway.
* acpiphp_bus_add might have been failed */ * acpiphp_bus_add might have been failed */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment