Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3a03e041 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Sasha Levin
Browse files

qlcnic: Fix an error handling path in 'qlcnic_probe()'



[ Upstream commit cb3376604a676e0302258b01893911bdd7aa5278 ]

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: 451724c8 ("qlcnic: aer support")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent e3a11145
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2706,6 +2706,7 @@ err_out_free_hw_res:
	kfree(ahw);

err_out_free_res:
	pci_disable_pcie_error_reporting(pdev);
	pci_release_regions(pdev);

err_out_disable_pdev: