Home
last modified time | relevance | path

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

/openbmc/linux/net/ipv4/
H A Dtcp_highspeed.c109 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 Dtcp_veno.c174 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 Dtcp_hybla.c58 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 Dtcp_yeah.c55 tp->snd_cwnd_clamp = min_t(u32, tp->snd_cwnd_clamp, 0xffffffff/128); in tcp_yeah_init()
H A Dtcp_vegas.c275 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 Dtcp_cong.c462 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 Dtcp_metrics.c488 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 Dtcp_illinois.c289 (u32)tp->snd_cwnd_clamp)); in tcp_illinois_cong_avoid()
H A Dtcp_htcp.c246 if (tcp_snd_cwnd(tp) < tp->snd_cwnd_clamp) in htcp_cong_avoid()
H A Dtcp_bbr.c547 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); /* apply global cap */ in bbr_set_cwnd()
H A Dtcp.c444 tp->snd_cwnd_clamp = ~0; in tcp_init_sock()
H A Dtcp_input.c996 return min_t(__u32, cwnd, tp->snd_cwnd_clamp); in tcp_init_cwnd()
/openbmc/linux/tools/testing/selftests/bpf/
H A Dbpf_tcp_helpers.h74 __u32 snd_cwnd_clamp; member
/openbmc/linux/include/linux/
H A Dtcp.h320 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */ member
/openbmc/linux/net/core/
H A Dfilter.c5255 tp->snd_cwnd_clamp = val; in bpf_sol_tcp_setsockopt()