bnxt_en: Remove debugfs when pci_register_driver failed
[ Upstream commit991aef4ee4] When pci_register_driver failed, we need to remove debugfs, which will caused a resource leak, fix it. Resource leak logs as follows: [ 52.184456] debugfs: Directory 'bnxt_en' with parent '/' already present! Fixes:cabfb09d87("bnxt_en: add debugfs support for DIM") Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com> Reviewed-by: Leon Romanovsky <leonro@nvidia.com> Reviewed-by: Michael Chan <michael.chan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
389738f5db
commit
d6a561bd4c
@@ -13111,8 +13111,16 @@ static struct pci_driver bnxt_pci_driver = {
|
|||||||
|
|
||||||
static int __init bnxt_init(void)
|
static int __init bnxt_init(void)
|
||||||
{
|
{
|
||||||
|
int err;
|
||||||
|
|
||||||
bnxt_debug_init();
|
bnxt_debug_init();
|
||||||
return pci_register_driver(&bnxt_pci_driver);
|
err = pci_register_driver(&bnxt_pci_driver);
|
||||||
|
if (err) {
|
||||||
|
bnxt_debug_exit();
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit bnxt_exit(void)
|
static void __exit bnxt_exit(void)
|
||||||
|
|||||||
Reference in New Issue
Block a user