diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-01-26 00:34:15 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-28 14:55:54 +0100 |
commit | b473946a0853860e13b51c28add5524741117786 (patch) | |
tree | f60ad1068ba160e2628a915aa073ced46872f966 /drivers/net/bonding | |
parent | ixgbe: if ixgbe_copy_dcb_cfg is going to fail learn about it early (diff) | |
download | linux-b473946a0853860e13b51c28add5524741117786.tar.xz linux-b473946a0853860e13b51c28add5524741117786.zip |
bonding: bond_open error return value
The convention for API functions in kernel is to return errno value;
bond_open would return -1 if alb setup failed. The only reason that
could happen is if kmalloc() failed.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 3f0071cfe56b..efa0e41bf3ec 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -3639,7 +3639,7 @@ static int bond_open(struct net_device *bond_dev) */ if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) { /* something went wrong - fail the open operation */ - return -1; + return -ENOMEM; } INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor); |