Lines Matching refs:snd_cwnd
74 tcp_cong_avoid_ai(tp, min(tp->snd_cwnd, TCP_SCALABLE_AI_CNT),
78 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked);
133 bw = tp->snd_cwnd;
141 tp->snd_cwnd > yeah->reno_count) {
143 tp->snd_cwnd >> TCP_YEAH_EPSILON);
145 tp->snd_cwnd -= reduction;
147 tp->snd_cwnd = max(tp->snd_cwnd,
150 tp->snd_ssthresh = tp->snd_cwnd;
154 yeah->reno_count = max(tp->snd_cwnd>>1, 2U);
179 yeah->vegas.beg_snd_cwnd = tp->snd_cwnd;
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);