Searched refs:snd_cwnd_clamp (Results 1 – 15 of 15) sorted by relevance
/openbmc/linux/net/ipv4/ |
H 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()
|
H 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()
|
H 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()
|
H A D | tcp_yeah.c | 55 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in tcp_yeah_init()
|
H 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()
|
H A D | tcp_cong.c | 462 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); in tcp_slow_start() 486 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_cwnd_clamp)); in tcp_cong_avoid_ai()
|
H A D | tcp_metrics.c | 488 tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND); in tcp_init_metrics() 494 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics() 495 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
|
H A D | tcp_illinois.c | 289 (u32)tp->snd_cwnd_clamp)); in tcp_illinois_cong_avoid()
|
H A D | tcp_htcp.c | 246 if (tcp_snd_cwnd(tp) < tp->snd_cwnd_clamp) in htcp_cong_avoid()
|
H A D | tcp_bbr.c | 547 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); /* apply global cap */ in bbr_set_cwnd()
|
H A D | tcp.c | 444 tp->snd_cwnd_clamp = ~0; in tcp_init_sock()
|
H A D | tcp_input.c | 996 return min_t(__u32, cwnd, tp->snd_cwnd_clamp); in tcp_init_cwnd()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | bpf_tcp_helpers.h | 74 __u32 snd_cwnd_clamp; member
|
/openbmc/linux/include/linux/ |
H A D | tcp.h | 320 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */ member
|
/openbmc/linux/net/core/ |
H A D | filter.c | 5255 tp->snd_cwnd_clamp = val; in bpf_sol_tcp_setsockopt()
|