|
@@ -35,6 +35,7 @@ static const struct nla_policy bond_policy[IFLA_BOND_MAX + 1] = {
|
|
|
[IFLA_BOND_PRIMARY] = { .type = NLA_U32 },
|
|
|
[IFLA_BOND_PRIMARY_RESELECT] = { .type = NLA_U8 },
|
|
|
[IFLA_BOND_FAIL_OVER_MAC] = { .type = NLA_U8 },
|
|
|
+ [IFLA_BOND_XMIT_HASH_POLICY] = { .type = NLA_U8 },
|
|
|
};
|
|
|
|
|
|
static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
|
|
@@ -186,6 +187,14 @@ static int bond_changelink(struct net_device *bond_dev,
|
|
|
if (err)
|
|
|
return err;
|
|
|
}
|
|
|
+ if (data[IFLA_BOND_XMIT_HASH_POLICY]) {
|
|
|
+ int xmit_hash_policy =
|
|
|
+ nla_get_u8(data[IFLA_BOND_XMIT_HASH_POLICY]);
|
|
|
+
|
|
|
+ err = bond_option_xmit_hash_policy_set(bond, xmit_hash_policy);
|
|
|
+ if (err)
|
|
|
+ return err;
|
|
|
+ }
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -217,6 +226,7 @@ static size_t bond_get_size(const struct net_device *bond_dev)
|
|
|
nla_total_size(sizeof(u32)) + /* IFLA_BOND_PRIMARY */
|
|
|
nla_total_size(sizeof(u8)) + /* IFLA_BOND_PRIMARY_RESELECT */
|
|
|
nla_total_size(sizeof(u8)) + /* IFLA_BOND_FAIL_OVER_MAC */
|
|
|
+ nla_total_size(sizeof(u8)) + /* IFLA_BOND_XMIT_HASH_POLICY */
|
|
|
0;
|
|
|
}
|
|
|
|
|
@@ -289,6 +299,10 @@ static int bond_fill_info(struct sk_buff *skb,
|
|
|
bond->params.fail_over_mac))
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
+ if (nla_put_u8(skb, IFLA_BOND_XMIT_HASH_POLICY,
|
|
|
+ bond->params.xmit_policy))
|
|
|
+ goto nla_put_failure;
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
nla_put_failure:
|