Home
last modified time | relevance | path

Searched refs:snd_cwnd_cnt (Results 1 – 10 of 10) sorted by relevance

/Linux-v5.4/net/ipv4/
Dtcp_hybla.c142 tp->snd_cwnd_cnt++; in hybla_cong_avoid()
153 tp->snd_cwnd_cnt = 0; in hybla_cong_avoid()
156 if (increment == 0 && odd == 0 && tp->snd_cwnd_cnt >= tp->snd_cwnd) { in hybla_cong_avoid()
158 tp->snd_cwnd_cnt = 0; in hybla_cong_avoid()
Dtcp_highspeed.c142 tp->snd_cwnd_cnt += ca->ai + 1; in hstcp_cong_avoid()
143 if (tp->snd_cwnd_cnt >= tp->snd_cwnd) { in hstcp_cong_avoid()
144 tp->snd_cwnd_cnt -= tp->snd_cwnd; in hstcp_cong_avoid()
Dtcp_cong.c411 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
412 tp->snd_cwnd_cnt = 0; in tcp_cong_avoid_ai()
416 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
417 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
418 u32 delta = tp->snd_cwnd_cnt / w; in tcp_cong_avoid_ai()
420 tp->snd_cwnd_cnt -= delta * w; in tcp_cong_avoid_ai()
Dtcp_veno.c169 if (tp->snd_cwnd_cnt >= tp->snd_cwnd) { in tcp_veno_cong_avoid()
176 tp->snd_cwnd_cnt = 0; in tcp_veno_cong_avoid()
178 tp->snd_cwnd_cnt++; in tcp_veno_cong_avoid()
Dtcp_yeah.c86 tp->snd_cwnd_cnt += yeah->pkts_acked; in tcp_yeah_cong_avoid()
87 if (tp->snd_cwnd_cnt > min(tp->snd_cwnd, TCP_SCALABLE_AI_CNT)) { in tcp_yeah_cong_avoid()
90 tp->snd_cwnd_cnt = 0; in tcp_yeah_cong_avoid()
Dtcp_illinois.c280 tp->snd_cwnd_cnt += ca->acked; in tcp_illinois_cong_avoid()
286 delta = (tp->snd_cwnd_cnt * ca->alpha) >> ALPHA_SHIFT; in tcp_illinois_cong_avoid()
290 tp->snd_cwnd_cnt = 0; in tcp_illinois_cong_avoid()
Dtcp_htcp.c245 if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tp->snd_cwnd) { in htcp_cong_avoid()
248 tp->snd_cwnd_cnt = 0; in htcp_cong_avoid()
251 tp->snd_cwnd_cnt += ca->pkts_acked; in htcp_cong_avoid()
Dtcp_input.c2005 tp->snd_cwnd_cnt = 0; in tcp_enter_loss()
2466 tp->snd_cwnd_cnt = 0; in tcp_init_cwnd_reduction()
2581 tp->snd_cwnd_cnt = 0; in tcp_mtup_probe_success()
Dtcp.c2622 tp->snd_cwnd_cnt = 0; in tcp_disconnect()
/Linux-v5.4/include/linux/
Dtcp.h278 u32 snd_cwnd_cnt; /* Linear increase counter */ member