From: Thomas Richter Date: Wed, 9 Apr 2014 10:52:59 +0000 (+0200) Subject: bonding: Remove debug_fs files when module init fails X-Git-Tag: v3.4.92~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cedc89a20df8cb06e3fee2f3f7b9d90430142e22;p=thirdparty%2Fkernel%2Fstable.git bonding: Remove debug_fs files when module init fails [ Upstream commit db29868653394937037d71dc3545768302dda643 ] Remove the bonding debug_fs entries when the module initialization fails. The debug_fs entries should be removed together with all other already allocated resources. Signed-off-by: Thomas Richter Signed-off-by: Jay Vosburgh Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 098581afdd9fe..2402af322de6e 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4930,6 +4930,7 @@ static int __init bonding_init(void) out: return res; err: + bond_destroy_debugfs(); rtnl_link_unregister(&bond_link_ops); err_link: unregister_pernet_subsys(&bond_net_ops);