bonding: fix return value of couple of store functions
authorJiri Pirko <jpirko@redhat.com>
Tue, 25 Jan 2011 11:03:25 +0000 (11:03 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Jan 2011 21:13:16 +0000 (13:13 -0800)
count is incorrectly returned even in case of fail. Return ret instead.

Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_sysfs.c

index 8fd0174..72bb0f6 100644 (file)
@@ -1198,7 +1198,7 @@ static ssize_t bonding_store_carrier(struct device *d,
                        bond->dev->name, new_value);
        }
 out:
-       return count;
+       return ret;
 }
 static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
                   bonding_show_carrier, bonding_store_carrier);
@@ -1595,7 +1595,7 @@ static ssize_t bonding_store_slaves_active(struct device *d,
                }
        }
 out:
-       return count;
+       return ret;
 }
 static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
                   bonding_show_slaves_active, bonding_store_slaves_active);