Searched refs:snd_cwnd_clamp (Results 1 – 14 of 14) sorted by relevance
/Linux-v5.4/net/ipv4/ |
D | tcp_highspeed.c | 109 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in hstcp_init() 140 if (tp->snd_cwnd < tp->snd_cwnd_clamp) { in hstcp_cong_avoid()
|
D | tcp_veno.c | 171 tp->snd_cwnd < tp->snd_cwnd_clamp) { in tcp_veno_cong_avoid() 183 else if (tp->snd_cwnd > tp->snd_cwnd_clamp) in tcp_veno_cong_avoid() 184 tp->snd_cwnd = tp->snd_cwnd_clamp; in tcp_veno_cong_avoid()
|
D | tcp_yeah.c | 57 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in tcp_yeah_init() 88 if (tp->snd_cwnd < tp->snd_cwnd_clamp) in tcp_yeah_cong_avoid()
|
D | tcp_hybla.c | 58 tp->snd_cwnd_clamp = 65535; in hybla_init() 164 tp->snd_cwnd = min_t(u32, tp->snd_cwnd, tp->snd_cwnd_clamp); in hybla_cong_avoid()
|
D | tcp_vegas.c | 274 else if (tp->snd_cwnd > tp->snd_cwnd_clamp) in tcp_vegas_cong_avoid() 275 tp->snd_cwnd = tp->snd_cwnd_clamp; in tcp_vegas_cong_avoid()
|
D | tcp_cong.c | 399 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); in tcp_slow_start() 423 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_cwnd_clamp); in tcp_cong_avoid_ai()
|
D | tcp_metrics.c | 459 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()
|
D | tcp_illinois.c | 289 (u32)tp->snd_cwnd_clamp); in tcp_illinois_cong_avoid()
|
D | tcp_htcp.c | 246 if (tp->snd_cwnd < tp->snd_cwnd_clamp) in htcp_cong_avoid()
|
D | tcp_bbr.c | 544 tp->snd_cwnd = min(cwnd, tp->snd_cwnd_clamp); /* apply global cap */ in bbr_set_cwnd()
|
D | tcp.c | 437 tp->snd_cwnd_clamp = ~0; in tcp_init_sock()
|
D | tcp_input.c | 869 return min_t(__u32, cwnd, tp->snd_cwnd_clamp); in tcp_init_cwnd()
|
/Linux-v5.4/include/linux/ |
D | tcp.h | 279 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */ member
|
/Linux-v5.4/net/core/ |
D | filter.c | 4365 tp->snd_cwnd_clamp = val; in BPF_CALL_5()
|