Lines Matching refs:reduction
142 u32 reduction = min(queue / TCP_YEAH_GAMMA ,
145 tp->snd_cwnd -= reduction;
191 u32 reduction;
194 reduction = yeah->lastQ;
196 reduction = min(reduction, max(tp->snd_cwnd>>1, 2U));
198 reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA);
200 reduction = max(tp->snd_cwnd>>1, 2U);
205 return max_t(int, tp->snd_cwnd - reduction, 2);