summaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-02-27 02:52:05 -0800
committerDavid S. Miller <davem@davemloft.net>2010-02-27 02:52:05 -0800
commit8d6184e4881b423522136aeb3ec1cbd9c35e8813 (patch)
treefc9c33ee44e199b65d0e619a6ced118f8f0bbec3 /drivers/net/bonding
parent3729d5021257b283f7fce33d957893162ccb2c9d (diff)
downloadop-kernel-dev-8d6184e4881b423522136aeb3ec1cbd9c35e8813.zip
op-kernel-dev-8d6184e4881b423522136aeb3ec1cbd9c35e8813.tar.gz
bonding: fix device leak on error in bond_create()
When the register_netdevice() call fails, the newly allocated device is not freed. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r--drivers/net/bonding/bond_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 1787e3c..430c022 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -4946,6 +4946,8 @@ int bond_create(struct net *net, const char *name)
}
res = register_netdevice(bond_dev);
+ if (res < 0)
+ goto out_netdev;
out:
rtnl_unlock();
OpenPOWER on IntegriCloud