diff options
author | Nikolay Aleksandrov <nikolay@redhat.com> | 2014-01-22 14:53:24 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-22 15:38:42 -0800 |
commit | 4fb0ef585eb2825ef4e542c2b1d302dc53f36860 (patch) | |
tree | 0979b3f487b2bd52a4d697c0a7d59201d7f1edd1 /drivers/net/bonding/bond_options.c | |
parent | 7bdb04ed0dbf9f0e94110be43db4f8bb7df58de2 (diff) | |
download | linux-rt-4fb0ef585eb2825ef4e542c2b1d302dc53f36860.tar.gz |
bonding: convert arp_ip_target to use the new option API
This patch adds the necessary changes so arp_ip_target would use
the new bonding option API. This option is an exception because of
the way it's currently implemented that's why its netlink code is
a bit different from the other options to keep the functionality as
before and at the same time to have a single set function.
This patch also fixes a few stylistic errors.
Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_options.c')
-rw-r--r-- | drivers/net/bonding/bond_options.c | 48 |
1 files changed, 34 insertions, 14 deletions
diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c index df693afbb1a5..df5f007ddaa5 100644 --- a/drivers/net/bonding/bond_options.c +++ b/drivers/net/bonding/bond_options.c @@ -17,6 +17,7 @@ #include <linux/rwlock.h> #include <linux/rcupdate.h> #include <linux/ctype.h> +#include <linux/inet.h> #include "bonding.h" static struct bond_opt_value bond_mode_tbl[] = { @@ -127,6 +128,13 @@ static struct bond_option bond_opts[] = { .values = bond_intmax_tbl, .set = bond_option_arp_interval_set }, + [BOND_OPT_ARP_TARGETS] = { + .id = BOND_OPT_ARP_TARGETS, + .name = "arp_ip_target", + .desc = "arp targets in n.n.n.n form", + .flags = BOND_OPTFLAG_RAWVAL, + .set = bond_option_arp_ip_targets_set + }, { } }; @@ -757,29 +765,41 @@ int bond_option_arp_ip_target_rem(struct bonding *bond, __be32 target) return 0; } -int bond_option_arp_ip_targets_set(struct bonding *bond, __be32 *targets, - int count) +void bond_option_arp_ip_targets_clear(struct bonding *bond) { - int i, ret = 0; + int i; /* not to race with bond_arp_rcv */ write_lock_bh(&bond->lock); - - /* clear table */ for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) _bond_options_arp_ip_target_set(bond, i, 0, 0); + write_unlock_bh(&bond->lock); +} - if (count == 0 && bond->params.arp_interval) - pr_warn("%s: removing last arp target with arp_interval on\n", - bond->dev->name); - - for (i = 0; i < count; i++) { - ret = _bond_option_arp_ip_target_add(bond, targets[i]); - if (ret) - break; +int bond_option_arp_ip_targets_set(struct bonding *bond, + struct bond_opt_value *newval) +{ + int ret = -EPERM; + __be32 target; + + if (newval->string) { + if (!in4_pton(newval->string+1, -1, (u8 *)&target, -1, NULL)) { + pr_err("%s: invalid ARP target %pI4 specified\n", + bond->dev->name, &target); + return ret; + } + if (newval->string[0] == '+') + ret = bond_option_arp_ip_target_add(bond, target); + else if (newval->string[0] == '-') + ret = bond_option_arp_ip_target_rem(bond, target); + else + pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n", + bond->dev->name); + } else { + target = newval->value; + ret = bond_option_arp_ip_target_add(bond, target); } - write_unlock_bh(&bond->lock); return ret; } |