Home
last modified time | relevance | path

Searched refs:snd_cwnd_clamp (Results 1 – 15 of 15) sorted by relevance

/Linux-v4.19/net/ipv4/
Dtcp_highspeed.c108 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in hstcp_init()
139 if (tp->snd_cwnd < tp->snd_cwnd_clamp) { in hstcp_cong_avoid()
Dtcp_veno.c170 tp->snd_cwnd < tp->snd_cwnd_clamp) { in tcp_veno_cong_avoid()
182 else if (tp->snd_cwnd > tp->snd_cwnd_clamp) in tcp_veno_cong_avoid()
183 tp->snd_cwnd = tp->snd_cwnd_clamp; in tcp_veno_cong_avoid()
Dtcp_yeah.c56 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in tcp_yeah_init()
87 if (tp->snd_cwnd < tp->snd_cwnd_clamp) in tcp_yeah_cong_avoid()
Dtcp_hybla.c57 tp->snd_cwnd_clamp = 65535; in hybla_init()
163 tp->snd_cwnd = min_t(u32, tp->snd_cwnd, tp->snd_cwnd_clamp); in hybla_cong_avoid()
Dtcp_vegas.c273 else if (tp->snd_cwnd > tp->snd_cwnd_clamp) in tcp_vegas_cong_avoid()
274 tp->snd_cwnd = tp->snd_cwnd_clamp; in tcp_vegas_cong_avoid()
Dtcp_cong.c398 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); in tcp_slow_start()
422 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp); in tcp_cong_avoid_ai()
Dtcp_metrics.c459 tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND); in tcp_init_metrics()
464 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics()
465 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
Dtcp_illinois.c288 (u32)tp->snd_cwnd_clamp); in tcp_illinois_cong_avoid()
Dtcp_htcp.c245 if (tp->snd_cwnd < tp->snd_cwnd_clamp) in htcp_cong_avoid()
Dtcp_bbr.c440 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); /* apply global cap */ in bbr_set_cwnd()
Dtcp.c436 tp->snd_cwnd_clamp = ~0; in tcp_init_sock()
Dtcp_input.c876 return min_t(__u32, cwnd, tp->snd_cwnd_clamp); in tcp_init_cwnd()
/Linux-v4.19/include/linux/
Dtcp.h283 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */ member
/Linux-v4.19/Documentation/networking/
Dtcp.txt21 snd_cwnd_clamp This is the maximum size that snd_cwnd can grow to.
/Linux-v4.19/net/core/
Dfilter.c4012 tp->snd_cwnd_clamp = val; in BPF_CALL_5()