Home
last modified time | relevance | path

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

/linux/net/ipv4/
H A 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 >= tcp_snd_cwnd(tp)) { in hybla_cong_avoid()
158 tp->snd_cwnd_cnt = 0; in hybla_cong_avoid()
H A Dtcp_highspeed.c142 tp->snd_cwnd_cnt += ca->ai + 1; in hstcp_cong_avoid()
143 if (tp->snd_cwnd_cnt >= tcp_snd_cwnd(tp)) { in hstcp_cong_avoid()
144 tp->snd_cwnd_cnt -= tcp_snd_cwnd(tp); in hstcp_cong_avoid()
H A Dtcp_cong.c473 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
474 tp->snd_cwnd_cnt = 0; in tcp_cong_avoid_ai()
478 tp->snd_cwnd_cnt += acked; in tcp_cong_avoid_ai()
479 if (tp->snd_cwnd_cnt >= w) { in tcp_cong_avoid_ai()
480 u32 delta = tp->snd_cwnd_cnt / w; in tcp_cong_avoid_ai()
482 tp->snd_cwnd_cnt -= delta * w; in tcp_cong_avoid_ai()
H A 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()
H A Dtcp_htcp.c245 if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tcp_snd_cwnd(tp)) { 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()
H A Dbpf_tcp_ca.c91 case offsetof(struct tcp_sock, snd_cwnd_cnt): in bpf_tcp_ca_btf_struct_access()
92 end = offsetofend(struct tcp_sock, snd_cwnd_cnt); in bpf_tcp_ca_btf_struct_access()
H A Dtcp_input.c2575 tp->snd_cwnd_cnt = 0; in tcp_enter_loss()
2977 tp->snd_cwnd_cnt = 0; in tcp_init_cwnd_reduction()
3096 tp->snd_cwnd_cnt = 0; in tcp_mtup_probe_success()
H A Dtcp.c3423 tp->snd_cwnd_cnt = 0; in tcp_disconnect()
/linux/include/linux/
H A Dtcp.h425 u32 snd_cwnd_cnt; /* Linear increase counter */ member