|
@@ -4289,7 +4289,7 @@ static int bond_check_params(struct bond_params *params)
|
|
|
int bond_mode = BOND_MODE_ROUNDROBIN;
|
|
|
int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
|
|
|
int lacp_fast = 0;
|
|
|
- int tlb_dynamic_lb = 0;
|
|
|
+ int tlb_dynamic_lb;
|
|
|
|
|
|
/* Convert string parameters. */
|
|
|
if (mode) {
|
|
@@ -4601,16 +4601,13 @@ static int bond_check_params(struct bond_params *params)
|
|
|
}
|
|
|
ad_user_port_key = valptr->value;
|
|
|
|
|
|
- if ((bond_mode == BOND_MODE_TLB) || (bond_mode == BOND_MODE_ALB)) {
|
|
|
- bond_opt_initstr(&newval, "default");
|
|
|
- valptr = bond_opt_parse(bond_opt_get(BOND_OPT_TLB_DYNAMIC_LB),
|
|
|
- &newval);
|
|
|
- if (!valptr) {
|
|
|
- pr_err("Error: No tlb_dynamic_lb default value");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- tlb_dynamic_lb = valptr->value;
|
|
|
+ bond_opt_initstr(&newval, "default");
|
|
|
+ valptr = bond_opt_parse(bond_opt_get(BOND_OPT_TLB_DYNAMIC_LB), &newval);
|
|
|
+ if (!valptr) {
|
|
|
+ pr_err("Error: No tlb_dynamic_lb default value");
|
|
|
+ return -EINVAL;
|
|
|
}
|
|
|
+ tlb_dynamic_lb = valptr->value;
|
|
|
|
|
|
if (lp_interval == 0) {
|
|
|
pr_warn("Warning: ip_interval must be between 1 and %d, so it was reset to %d\n",
|