bonding: add lp_interval attribute netlink support
authorsfeldma@cumulusnetworks.com <sfeldma@cumulusnetworks.com>
Wed, 18 Dec 2013 05:30:30 +0000 (21:30 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 19 Dec 2013 23:32:09 +0000 (18:32 -0500)
Add IFLA_BOND_LP_INTERVAL to allow get/set of bonding parameter
lp_interval via netlink.

Signed-off-by: Scott Feldman <sfeldma@cumulusnetworks.com>
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_netlink.c
drivers/net/bonding/bond_options.c
drivers/net/bonding/bond_sysfs.c
drivers/net/bonding/bonding.h
include/uapi/linux/if_link.h

index ac9a10c90a507bb194a12b16a6450ddacce8e534..6c8339bec1bf367d9cc83376bef26e49548f5e9a 100644 (file)
@@ -40,6 +40,7 @@ static const struct nla_policy bond_policy[IFLA_BOND_MAX + 1] = {
        [IFLA_BOND_NUM_PEER_NOTIF]      = { .type = NLA_U8 },
        [IFLA_BOND_ALL_SLAVES_ACTIVE]   = { .type = NLA_U8 },
        [IFLA_BOND_MIN_LINKS]           = { .type = NLA_U32 },
+       [IFLA_BOND_LP_INTERVAL]         = { .type = NLA_U32 },
 };
 
 static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
@@ -232,6 +233,14 @@ static int bond_changelink(struct net_device *bond_dev,
                if (err)
                        return err;
        }
+       if (data[IFLA_BOND_LP_INTERVAL]) {
+               int lp_interval =
+                       nla_get_u32(data[IFLA_BOND_LP_INTERVAL]);
+
+               err = bond_option_lp_interval_set(bond, lp_interval);
+               if (err)
+                       return err;
+       }
        return 0;
 }
 
@@ -268,6 +277,7 @@ static size_t bond_get_size(const struct net_device *bond_dev)
                nla_total_size(sizeof(u8)) +    /* IFLA_BOND_NUM_PEER_NOTIF */
                nla_total_size(sizeof(u8)) +   /* IFLA_BOND_ALL_SLAVES_ACTIVE */
                nla_total_size(sizeof(u32)) +   /* IFLA_BOND_MIN_LINKS */
+               nla_total_size(sizeof(u32)) +   /* IFLA_BOND_LP_INTERVAL */
                0;
 }
 
@@ -360,6 +370,10 @@ static int bond_fill_info(struct sk_buff *skb,
                        bond->params.min_links))
                goto nla_put_failure;
 
+       if (nla_put_u32(skb, IFLA_BOND_LP_INTERVAL,
+                       bond->params.lp_interval))
+               goto nla_put_failure;
+
        return 0;
 
 nla_put_failure:
index da49ac4a8d8e3a4c9a288dd16a0204a87377214c..e313a8f8fae05d16c4979f904f9396a10d43fcba 100644 (file)
@@ -620,3 +620,16 @@ int bond_option_min_links_set(struct bonding *bond, int min_links)
 
        return 0;
 }
+
+int bond_option_lp_interval_set(struct bonding *bond, int lp_interval)
+{
+       if (lp_interval <= 0) {
+               pr_err("%s: lp_interval must be between 1 and %d\n",
+                      bond->dev->name, INT_MAX);
+               return -EINVAL;
+       }
+
+       bond->params.lp_interval = lp_interval;
+
+       return 0;
+}
index 359adda17dba858ccc4256c2e663747fbe024b3c..c4cdbf6469ae6d420132eab7fc4aeea2b233dfec 100644 (file)
@@ -1369,24 +1369,22 @@ static ssize_t bonding_store_lp_interval(struct device *d,
                                         const char *buf, size_t count)
 {
        struct bonding *bond = to_bond(d);
-       int new_value, ret = count;
+       int new_value, ret;
 
        if (sscanf(buf, "%d", &new_value) != 1) {
                pr_err("%s: no lp interval value specified.\n",
                        bond->dev->name);
-               ret = -EINVAL;
-               goto out;
+               return -EINVAL;
        }
 
-       if (new_value <= 0) {
-               pr_err ("%s: lp_interval must be between 1 and %d\n",
-                       bond->dev->name, INT_MAX);
-               ret = -EINVAL;
-               goto out;
-       }
+       if (!rtnl_trylock())
+               return restart_syscall();
 
-       bond->params.lp_interval = new_value;
-out:
+       ret = bond_option_lp_interval_set(bond, new_value);
+       if (!ret)
+               ret = count;
+
+       rtnl_unlock();
        return ret;
 }
 
index 7d7ad1ccbd99da7defbc8b607937ef4f63e9d4f6..0a1a69e001a48f74d6543fb327bb7e20a6a6ff39 100644 (file)
@@ -465,6 +465,7 @@ int bond_option_num_peer_notif_set(struct bonding *bond, int num_peer_notif);
 int bond_option_all_slaves_active_set(struct bonding *bond,
                                      int all_slaves_active);
 int bond_option_min_links_set(struct bonding *bond, int min_links);
+int bond_option_lp_interval_set(struct bonding *bond, int min_links);
 struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond);
 struct net_device *bond_option_active_slave_get(struct bonding *bond);
 
index c7a0f89d59b2627d601a92e836dd801192cce429..4825ae74f1aad9de0c7fe32d5743250dadd132c2 100644 (file)
@@ -347,6 +347,7 @@ enum {
        IFLA_BOND_NUM_PEER_NOTIF,
        IFLA_BOND_ALL_SLAVES_ACTIVE,
        IFLA_BOND_MIN_LINKS,
+       IFLA_BOND_LP_INTERVAL,
        __IFLA_BOND_MAX,
 };