]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
habanalabs: Fix an error handling path in 'hl_pci_probe()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sat, 12 Jun 2021 05:39:51 +0000 (07:39 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Jul 2021 15:00:23 +0000 (17:00 +0200)
[ Upstream commit 3002f467a0b0a70aec01d9f446da4ac8c6fda10b ]

If an error occurs after a 'pci_enable_pcie_error_reporting()' call, it
must be undone by a corresponding 'pci_disable_pcie_error_reporting()'
call, as already done in the remove function.

Fixes: 2e5eda4681f9 ("habanalabs: PCIe Advanced Error Reporting support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/misc/habanalabs/common/habanalabs_drv.c

index 032d114f01ea54b705f2f0df0cb93309d07e2947..82714062624452e0a41e8224b3b950887d718b19 100644 (file)
@@ -437,6 +437,7 @@ static int hl_pci_probe(struct pci_dev *pdev,
        return 0;
 
 disable_device:
+       pci_disable_pcie_error_reporting(pdev);
        pci_set_drvdata(pdev, NULL);
        destroy_hdev(hdev);