CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2017/05/07 12:18:20
Modified files:
sys/net : fq_codel.c
Log message:
Fix stage transition from the initial one to DROPPING
When the initial state is set to DROPPING, the code immediately
jumps to a CONTROL state bypassing DROPPING. To fix this we start
with an explicit INITIAL state so that we do an INITIAL->DROPPING
transition right off the bat in the beginning of the loop and
then perform a DROPPING->CONTROL and either CONTROL->DROPPING and
restart the loop or CONTROL->RECOVERY/ACCEPTING and terminate.