pr_debug("Sent LACPDU on port %d\n",port->actor_port_number);
// mark ntt as false, so it will not be sent again until demanded
port->ntt=0;
/* mark ntt as false, so it will not be sent again until
demanded */
port->ntt=false;
}
}
// restart tx timer(to verify that we will not exceed AD_MAX_TX_IN_SECOND
@@ -1250,7 +1252,7 @@ static void ad_periodic_machine(struct port *port)
port->sm_periodic_timer_counter=__ad_timer_to_ticks(AD_PERIODIC_TIMER,(u16)(AD_SLOW_PERIODIC_TIME))-1;// decrement 1 tick we lost in the PERIODIC_TX cycle
break;
caseAD_PERIODIC_TX:
port->ntt=1;
port->ntt=true;
break;
default://to silence the compiler
break;
@@ -1664,7 +1666,7 @@ static void ad_initialize_port(struct port *port, int lacp_fast)