Home
last modified time | relevance | path

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

/linux-4.4.14/net/ipv4/
Dtcp_hybla.c141 tp->snd_cwnd_cnt++; in hybla_cong_avoid()
152 tp->snd_cwnd_cnt = 0; in hybla_cong_avoid()
155 if (increment == 0 && odd == 0 && tp->snd_cwnd_cnt >= tp->snd_cwnd) { in hybla_cong_avoid()
157 tp->snd_cwnd_cnt = 0; in hybla_cong_avoid()
Dtcp_highspeed.c141 tp->snd_cwnd_cnt += ca->ai + 1; in hstcp_cong_avoid()
142 if (tp->snd_cwnd_cnt >= tp->snd_cwnd) { in hstcp_cong_avoid()
143 tp->snd_cwnd_cnt -= tp->snd_cwnd; in hstcp_cong_avoid()
Dtcp_cong.c394 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
395 tp->snd_cwnd_cnt = 0; in tcp_cong_avoid_ai()
399 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
400 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
401 u32 delta = tp->snd_cwnd_cnt / w; in tcp_cong_avoid_ai()
403 tp->snd_cwnd_cnt -= delta * w; in tcp_cong_avoid_ai()
Dtcp_veno.c167 if (tp->snd_cwnd_cnt >= tp->snd_cwnd) { in tcp_veno_cong_avoid()
174 tp->snd_cwnd_cnt = 0; in tcp_veno_cong_avoid()
176 tp->snd_cwnd_cnt++; in tcp_veno_cong_avoid()
Dtcp_yeah.c84 tp->snd_cwnd_cnt += yeah->pkts_acked; in tcp_yeah_cong_avoid()
85 if (tp->snd_cwnd_cnt > min(tp->snd_cwnd, TCP_SCALABLE_AI_CNT)) { in tcp_yeah_cong_avoid()
88 tp->snd_cwnd_cnt = 0; in tcp_yeah_cong_avoid()
Dtcp_illinois.c278 tp->snd_cwnd_cnt += ca->acked; in tcp_illinois_cong_avoid()
284 delta = (tp->snd_cwnd_cnt * ca->alpha) >> ALPHA_SHIFT; in tcp_illinois_cong_avoid()
288 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_minisocks.c494 newtp->snd_cwnd_cnt = 0; in tcp_create_openreq_child()
Dtcp_input.c1890 tp->snd_cwnd_cnt = 0; in tcp_enter_loss()
2464 tp->snd_cwnd_cnt = 0; in tcp_init_cwnd_reduction()
2580 tp->snd_cwnd_cnt = 0; in tcp_mtup_probe_success()
Dtcp.c2249 tp->snd_cwnd_cnt = 0; in tcp_disconnect()
/linux-4.4.14/include/linux/
Dtcp.h251 u32 snd_cwnd_cnt; /* Linear increase counter */ member
/linux-4.4.14/Documentation/networking/
Dtcp.txt19 snd_cwnd_cnt A counter used to slow down the rate of increase