Searched refs:snd_cwnd_clamp (Results 1 – 15 of 15) sorted by relevance
/linux-6.3-rc2/net/ipv4/ |
A D | tcp_highspeed.c | 109 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in hstcp_init() 140 if (tcp_snd_cwnd(tp) < tp->snd_cwnd_clamp) { in hstcp_cong_avoid()
|
A D | tcp_veno.c | 174 tcp_snd_cwnd(tp) < tp->snd_cwnd_clamp) { in tcp_veno_cong_avoid() 186 else if (tcp_snd_cwnd(tp) > tp->snd_cwnd_clamp) in tcp_veno_cong_avoid() 187 tcp_snd_cwnd_set(tp, tp->snd_cwnd_clamp); in tcp_veno_cong_avoid()
|
A D | tcp_hybla.c | 58 tp->snd_cwnd_clamp = 65535; in hybla_init() 164 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_cwnd_clamp)); in hybla_cong_avoid()
|
A D | tcp_yeah.c | 55 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in tcp_yeah_init()
|
A D | tcp_vegas.c | 275 else if (tcp_snd_cwnd(tp) > tp->snd_cwnd_clamp) in tcp_vegas_cong_avoid() 276 tcp_snd_cwnd_set(tp, tp->snd_cwnd_clamp); in tcp_vegas_cong_avoid()
|
A D | tcp_cong.c | 411 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); in tcp_slow_start() 435 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_cwnd_clamp)); in tcp_cong_avoid_ai()
|
A D | tcp_metrics.c | 464 tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND); in tcp_init_metrics() 470 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics() 471 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
|
A D | tcp_illinois.c | 289 (u32)tp->snd_cwnd_clamp)); in tcp_illinois_cong_avoid()
|
A D | tcp_htcp.c | 246 if (tcp_snd_cwnd(tp) < tp->snd_cwnd_clamp) in htcp_cong_avoid()
|
A D | tcp_bbr.c | 547 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); /* apply global cap */ in bbr_set_cwnd()
|
A D | tcp.c | 444 tp->snd_cwnd_clamp = ~0; in tcp_init_sock()
|
A D | tcp_input.c | 966 return min_t(__u32, cwnd, tp->snd_cwnd_clamp); in tcp_init_cwnd()
|
/linux-6.3-rc2/tools/testing/selftests/bpf/ |
A D | bpf_tcp_helpers.h | 74 __u32 snd_cwnd_clamp; member
|
/linux-6.3-rc2/include/linux/ |
A D | tcp.h | 318 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */ member
|
/linux-6.3-rc2/net/core/ |
A D | filter.c | 5127 tp->snd_cwnd_clamp = val; in bpf_sol_tcp_setsockopt()
|
Completed in 56 milliseconds