ixgbe: Fix an error handling path in 'ixgbe_probe()'
[ Upstream commit dd2aefcd5e37989ae5f90afdae44bbbf3a2990da ]
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: 6fabd715e6
("ixgbe: Implement PCIe AER support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Tested-by: Tony Brelinski <tonyx.brelinski@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
02d1af0bee
commit
7bc9fb1f80
@@ -11081,6 +11081,7 @@ err_ioremap:
|
|||||||
disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
|
disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state);
|
||||||
free_netdev(netdev);
|
free_netdev(netdev);
|
||||||
err_alloc_etherdev:
|
err_alloc_etherdev:
|
||||||
|
pci_disable_pcie_error_reporting(pdev);
|
||||||
pci_release_mem_regions(pdev);
|
pci_release_mem_regions(pdev);
|
||||||
err_pci_reg:
|
err_pci_reg:
|
||||||
err_dma:
|
err_dma:
|
||||||
|
Reference in New Issue
Block a user