Searched refs:snd_cwnd_cnt (Results 1 - 11 of 11) sorted by relevance

/linux-master/net/ipv4/
H A Dtcp_highspeed.c142 tp->snd_cwnd_cnt += ca->ai + 1;
143 if (tp->snd_cwnd_cnt >= tcp_snd_cwnd(tp)) {
144 tp->snd_cwnd_cnt -= tcp_snd_cwnd(tp);
H A Dtcp_hybla.c142 tp->snd_cwnd_cnt++;
153 tp->snd_cwnd_cnt = 0;
156 if (increment == 0 && odd == 0 && tp->snd_cwnd_cnt >= tcp_snd_cwnd(tp)) {
158 tp->snd_cwnd_cnt = 0;
H A Dtcp_veno.c172 if (tp->snd_cwnd_cnt >= tcp_snd_cwnd(tp)) {
179 tp->snd_cwnd_cnt = 0;
181 tp->snd_cwnd_cnt += acked;
H A Dtcp_cong.c471 if (tp->snd_cwnd_cnt >= w) {
472 tp->snd_cwnd_cnt = 0;
476 tp->snd_cwnd_cnt += acked;
477 if (tp->snd_cwnd_cnt >= w) {
478 u32 delta = tp->snd_cwnd_cnt / w;
480 tp->snd_cwnd_cnt -= delta * w;
H A Dtcp_illinois.c279 /* snd_cwnd_cnt is # of packets since last cwnd increment */
280 tp->snd_cwnd_cnt += ca->acked;
286 delta = (tp->snd_cwnd_cnt * ca->alpha) >> ALPHA_SHIFT;
290 tp->snd_cwnd_cnt = 0;
H A Dtcp_htcp.c245 if ((tp->snd_cwnd_cnt * ca->alpha)>>7 >= tcp_snd_cwnd(tp)) {
248 tp->snd_cwnd_cnt = 0;
251 tp->snd_cwnd_cnt += ca->pkts_acked;
H A Dbpf_tcp_ca.c107 case offsetof(struct tcp_sock, snd_cwnd_cnt):
108 end = offsetofend(struct tcp_sock, snd_cwnd_cnt);
H A Dtcp_input.c2195 tp->snd_cwnd_cnt = 0;
2655 tp->snd_cwnd_cnt = 0;
2772 tp->snd_cwnd_cnt = 0;
H A Dtcp.c3040 tp->snd_cwnd_cnt = 0;
/linux-master/tools/testing/selftests/bpf/
H A Dbpf_tcp_helpers.h73 __u32 snd_cwnd_cnt; member in struct:tcp_sock
/linux-master/include/linux/
H A Dtcp.h397 u32 snd_cwnd_cnt; /* Linear increase counter */ member in struct:tcp_sock

Completed in 175 milliseconds