Lines Matching refs:snd_cwnd
74 tcp_cong_avoid_ai(tp, min(tp->snd_cwnd, TCP_SCALABLE_AI_CNT), in tcp_yeah_cong_avoid()
78 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked); in tcp_yeah_cong_avoid()
133 bw = tp->snd_cwnd; in tcp_yeah_cong_avoid()
141 tp->snd_cwnd > yeah->reno_count) { in tcp_yeah_cong_avoid()
143 tp->snd_cwnd >> TCP_YEAH_EPSILON); in tcp_yeah_cong_avoid()
145 tp->snd_cwnd -= reduction; in tcp_yeah_cong_avoid()
147 tp->snd_cwnd = max(tp->snd_cwnd, in tcp_yeah_cong_avoid()
150 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
154 yeah->reno_count = max(tp->snd_cwnd>>1, 2U); in tcp_yeah_cong_avoid()
179 yeah->vegas.beg_snd_cwnd = tp->snd_cwnd; in tcp_yeah_cong_avoid()
196 reduction = min(reduction, max(tp->snd_cwnd>>1, 2U)); in tcp_yeah_ssthresh()
198 reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA); in tcp_yeah_ssthresh()
200 reduction = max(tp->snd_cwnd>>1, 2U); in tcp_yeah_ssthresh()
205 return max_t(int, tp->snd_cwnd - reduction, 2); in tcp_yeah_ssthresh()