mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-17 18:14:34 +08:00
bonding: convert arp_all_targets to use the new option API
This patch adds the necessary changes so arp_all_targets would use the new bonding option API. Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
162288810c
commit
edf36b24c5
@ -214,12 +214,6 @@ const struct bond_parm_tbl bond_lacp_tbl[] = {
|
|||||||
{ NULL, -1},
|
{ NULL, -1},
|
||||||
};
|
};
|
||||||
|
|
||||||
const struct bond_parm_tbl arp_all_targets_tbl[] = {
|
|
||||||
{ "any", BOND_ARP_TARGETS_ANY},
|
|
||||||
{ "all", BOND_ARP_TARGETS_ALL},
|
|
||||||
{ NULL, -1},
|
|
||||||
};
|
|
||||||
|
|
||||||
const struct bond_parm_tbl fail_over_mac_tbl[] = {
|
const struct bond_parm_tbl fail_over_mac_tbl[] = {
|
||||||
{ "none", BOND_FOM_NONE},
|
{ "none", BOND_FOM_NONE},
|
||||||
{ "active", BOND_FOM_ACTIVE},
|
{ "active", BOND_FOM_ACTIVE},
|
||||||
@ -4231,13 +4225,15 @@ static int bond_check_params(struct bond_params *params)
|
|||||||
|
|
||||||
arp_all_targets_value = 0;
|
arp_all_targets_value = 0;
|
||||||
if (arp_all_targets) {
|
if (arp_all_targets) {
|
||||||
arp_all_targets_value = bond_parse_parm(arp_all_targets,
|
bond_opt_initstr(&newval, arp_all_targets);
|
||||||
arp_all_targets_tbl);
|
valptr = bond_opt_parse(bond_opt_get(BOND_OPT_ARP_ALL_TARGETS),
|
||||||
|
&newval);
|
||||||
if (arp_all_targets_value == -1) {
|
if (!valptr) {
|
||||||
pr_err("Error: invalid arp_all_targets_value \"%s\"\n",
|
pr_err("Error: invalid arp_all_targets_value \"%s\"\n",
|
||||||
arp_all_targets);
|
arp_all_targets);
|
||||||
arp_all_targets_value = 0;
|
arp_all_targets_value = 0;
|
||||||
|
} else {
|
||||||
|
arp_all_targets_value = valptr->value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -202,7 +202,8 @@ static int bond_changelink(struct net_device *bond_dev,
|
|||||||
int arp_all_targets =
|
int arp_all_targets =
|
||||||
nla_get_u32(data[IFLA_BOND_ARP_ALL_TARGETS]);
|
nla_get_u32(data[IFLA_BOND_ARP_ALL_TARGETS]);
|
||||||
|
|
||||||
err = bond_option_arp_all_targets_set(bond, arp_all_targets);
|
bond_opt_initval(&newval, arp_all_targets);
|
||||||
|
err = __bond_opt_set(bond, BOND_OPT_ARP_ALL_TARGETS, &newval);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,12 @@ static struct bond_opt_value bond_arp_validate_tbl[] = {
|
|||||||
{ NULL, -1, 0},
|
{ NULL, -1, 0},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct bond_opt_value bond_arp_all_targets_tbl[] = {
|
||||||
|
{ "any", BOND_ARP_TARGETS_ANY, BOND_VALFLAG_DEFAULT},
|
||||||
|
{ "all", BOND_ARP_TARGETS_ALL, 0},
|
||||||
|
{ NULL, -1, 0},
|
||||||
|
};
|
||||||
|
|
||||||
static struct bond_option bond_opts[] = {
|
static struct bond_option bond_opts[] = {
|
||||||
[BOND_OPT_MODE] = {
|
[BOND_OPT_MODE] = {
|
||||||
.id = BOND_OPT_MODE,
|
.id = BOND_OPT_MODE,
|
||||||
@ -85,6 +91,13 @@ static struct bond_option bond_opts[] = {
|
|||||||
.values = bond_arp_validate_tbl,
|
.values = bond_arp_validate_tbl,
|
||||||
.set = bond_option_arp_validate_set
|
.set = bond_option_arp_validate_set
|
||||||
},
|
},
|
||||||
|
[BOND_OPT_ARP_ALL_TARGETS] = {
|
||||||
|
.id = BOND_OPT_ARP_ALL_TARGETS,
|
||||||
|
.name = "arp_all_targets",
|
||||||
|
.desc = "fail on any/all arp targets timeout",
|
||||||
|
.values = bond_arp_all_targets_tbl,
|
||||||
|
.set = bond_option_arp_all_targets_set
|
||||||
|
},
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -767,19 +780,12 @@ int bond_option_arp_validate_set(struct bonding *bond,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int bond_option_arp_all_targets_set(struct bonding *bond, int arp_all_targets)
|
int bond_option_arp_all_targets_set(struct bonding *bond,
|
||||||
|
struct bond_opt_value *newval)
|
||||||
{
|
{
|
||||||
if (bond_parm_tbl_lookup(arp_all_targets, arp_all_targets_tbl) < 0) {
|
pr_info("%s: setting arp_all_targets to %s (%llu).\n",
|
||||||
pr_err("%s: Ignoring invalid arp_all_targets value %d.\n",
|
bond->dev->name, newval->string, newval->value);
|
||||||
bond->dev->name, arp_all_targets);
|
bond->params.arp_all_targets = newval->value;
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
pr_info("%s: setting arp_all_targets to %s (%d).\n",
|
|
||||||
bond->dev->name, arp_all_targets_tbl[arp_all_targets].modename,
|
|
||||||
arp_all_targets);
|
|
||||||
|
|
||||||
bond->params.arp_all_targets = arp_all_targets;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,7 @@ enum {
|
|||||||
BOND_OPT_PACKETS_PER_SLAVE,
|
BOND_OPT_PACKETS_PER_SLAVE,
|
||||||
BOND_OPT_XMIT_HASH,
|
BOND_OPT_XMIT_HASH,
|
||||||
BOND_OPT_ARP_VALIDATE,
|
BOND_OPT_ARP_VALIDATE,
|
||||||
|
BOND_OPT_ARP_ALL_TARGETS,
|
||||||
BOND_OPT_LAST
|
BOND_OPT_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -108,4 +109,6 @@ int bond_option_xmit_hash_policy_set(struct bonding *bond,
|
|||||||
struct bond_opt_value *newval);
|
struct bond_opt_value *newval);
|
||||||
int bond_option_arp_validate_set(struct bonding *bond,
|
int bond_option_arp_validate_set(struct bonding *bond,
|
||||||
struct bond_opt_value *newval);
|
struct bond_opt_value *newval);
|
||||||
|
int bond_option_arp_all_targets_set(struct bonding *bond,
|
||||||
|
struct bond_opt_value *newval);
|
||||||
#endif /* _BOND_OPTIONS_H */
|
#endif /* _BOND_OPTIONS_H */
|
||||||
|
@ -357,10 +357,12 @@ static ssize_t bonding_show_arp_all_targets(struct device *d,
|
|||||||
char *buf)
|
char *buf)
|
||||||
{
|
{
|
||||||
struct bonding *bond = to_bond(d);
|
struct bonding *bond = to_bond(d);
|
||||||
int value = bond->params.arp_all_targets;
|
struct bond_opt_value *val;
|
||||||
|
|
||||||
return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
|
val = bond_opt_get_val(BOND_OPT_ARP_ALL_TARGETS,
|
||||||
value);
|
bond->params.arp_all_targets);
|
||||||
|
return sprintf(buf, "%s %d\n",
|
||||||
|
val->string, bond->params.arp_all_targets);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t bonding_store_arp_all_targets(struct device *d,
|
static ssize_t bonding_store_arp_all_targets(struct device *d,
|
||||||
@ -368,24 +370,12 @@ static ssize_t bonding_store_arp_all_targets(struct device *d,
|
|||||||
const char *buf, size_t count)
|
const char *buf, size_t count)
|
||||||
{
|
{
|
||||||
struct bonding *bond = to_bond(d);
|
struct bonding *bond = to_bond(d);
|
||||||
int new_value, ret;
|
int ret;
|
||||||
|
|
||||||
new_value = bond_parse_parm(buf, arp_all_targets_tbl);
|
ret = bond_opt_tryset_rtnl(bond, BOND_OPT_ARP_ALL_TARGETS, (char *)buf);
|
||||||
if (new_value < 0) {
|
|
||||||
pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
|
|
||||||
bond->dev->name, buf);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!rtnl_trylock())
|
|
||||||
return restart_syscall();
|
|
||||||
|
|
||||||
ret = bond_option_arp_all_targets_set(bond, new_value);
|
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = count;
|
ret = count;
|
||||||
|
|
||||||
rtnl_unlock();
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -462,7 +462,6 @@ int bond_option_arp_ip_targets_set(struct bonding *bond, __be32 *targets,
|
|||||||
int count);
|
int count);
|
||||||
int bond_option_arp_ip_target_add(struct bonding *bond, __be32 target);
|
int bond_option_arp_ip_target_add(struct bonding *bond, __be32 target);
|
||||||
int bond_option_arp_ip_target_rem(struct bonding *bond, __be32 target);
|
int bond_option_arp_ip_target_rem(struct bonding *bond, __be32 target);
|
||||||
int bond_option_arp_all_targets_set(struct bonding *bond, int arp_all_targets);
|
|
||||||
int bond_option_primary_set(struct bonding *bond, const char *primary);
|
int bond_option_primary_set(struct bonding *bond, const char *primary);
|
||||||
int bond_option_primary_reselect_set(struct bonding *bond,
|
int bond_option_primary_reselect_set(struct bonding *bond,
|
||||||
int primary_reselect);
|
int primary_reselect);
|
||||||
|
Loading…
Reference in New Issue
Block a user