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