]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
be2net: Fix an error handling path in 'be_probe()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 16 Jun 2021 18:43:37 +0000 (20:43 +0200)
committerSasha Levin <sashal@kernel.org>
Wed, 30 Jun 2021 12:49:33 +0000 (08:49 -0400)
[ Upstream commit c19c8c0e666f9259e2fc4d2fa4b9ff8e3b40ee5d ]

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: d6b6d9877878 ("be2net: use PCIe AER capability")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Somnath Kotur <somnath.kotur@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/emulex/benet/be_main.c

index 7cd39324106dcea644f2b3ede879384865badbc8..398b9bd09400b6483a58e2127d3cc4f1188ac74a 100644 (file)
@@ -5878,6 +5878,7 @@ drv_cleanup:
 unmap_bars:
        be_unmap_pci_bars(adapter);
 free_netdev:
+       pci_disable_pcie_error_reporting(pdev);
        free_netdev(netdev);
 rel_reg:
        pci_release_regions(pdev);