]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
habanalabs: register to pci shutdown callback
authorOded Gabbay <ogabbay@kernel.org>
Mon, 14 Dec 2020 10:52:06 +0000 (12:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 19 Jan 2021 17:26:14 +0000 (18:26 +0100)
[ Upstream commit fcaebc7354188b0d708c79df4390fbabd4d9799d ]

We need to make sure our device is idle when rebooting a virtual
machine. This is done in the driver level.

The firmware will later handle FLR but we want to be extra safe and
stop the devices until the FLR is handled.

Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/misc/habanalabs/habanalabs_drv.c

index 8c342fb499ca66d8a60154ede216d462e191e3e2..ae50bd55f30af9c91730173e45861c085f6b18b8 100644 (file)
@@ -443,6 +443,7 @@ static struct pci_driver hl_pci_driver = {
        .id_table = ids,
        .probe = hl_pci_probe,
        .remove = hl_pci_remove,
+       .shutdown = hl_pci_remove,
        .driver.pm = &hl_pm_ops,
 };