Searched refs:tcp_snd_cwnd_set (Results 1 – 17 of 17) sorted by relevance
/linux-6.3-rc2/net/ipv4/ |
A D | tcp_hybla.c | 57 tcp_snd_cwnd_set(tp, 2); in hybla_init() 65 tcp_snd_cwnd_set(tp, ca->rho); in hybla_init() 146 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + (increment >> 7)); in hybla_cong_avoid() 151 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in hybla_cong_avoid() 157 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in hybla_cong_avoid() 162 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_ssthresh)); in hybla_cong_avoid() 164 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_cwnd_clamp)); in hybla_cong_avoid()
|
A D | tcp_vegas.c | 241 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), in tcp_vegas_cong_avoid() 258 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - 1); in tcp_vegas_cong_avoid() 265 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in tcp_vegas_cong_avoid() 274 tcp_snd_cwnd_set(tp, 2); in tcp_vegas_cong_avoid() 276 tcp_snd_cwnd_set(tp, tp->snd_cwnd_clamp); in tcp_vegas_cong_avoid()
|
A D | tcp_veno.c | 175 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in tcp_veno_cong_avoid() 185 tcp_snd_cwnd_set(tp, 2); in tcp_veno_cong_avoid() 187 tcp_snd_cwnd_set(tp, tp->snd_cwnd_clamp); in tcp_veno_cong_avoid()
|
A D | tcp_cong.c | 411 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); in tcp_slow_start() 425 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in tcp_cong_avoid_ai() 433 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + delta); in tcp_cong_avoid_ai() 435 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), tp->snd_cwnd_clamp)); in tcp_cong_avoid_ai()
|
A D | tcp_yeah.c | 145 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - reduction); in tcp_yeah_cong_avoid() 147 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp), in tcp_yeah_cong_avoid()
|
A D | tcp_nv.c | 407 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - dec); in tcpnv_acked() 409 tcp_snd_cwnd_set(tp, max_win); in tcpnv_acked() 448 tcp_snd_cwnd_set(tp, nv_min_cwnd); in tcpnv_acked()
|
A D | tcp_lp.c | 316 tcp_snd_cwnd_set(tp, 1U); in tcp_lp_pkts_acked() 321 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp) >> 1U, 1U)); in tcp_lp_pkts_acked()
|
A D | tcp_highspeed.c | 145 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in hstcp_cong_avoid()
|
A D | tcp_westwood.c | 248 tcp_snd_cwnd_set(tp, tp->snd_ssthresh); in tcp_westwood_event()
|
A D | tcp_bbr.c | 547 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); /* apply global cap */ in bbr_set_cwnd() 549 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), bbr_cwnd_min_target)); in bbr_set_cwnd() 917 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp), bbr->prior_cwnd)); in bbr_check_probe_rtt_done()
|
A D | tcp_illinois.c | 288 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp) + delta / tcp_snd_cwnd(tp), in tcp_illinois_cong_avoid()
|
A D | tcp_htcp.c | 247 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in htcp_cong_avoid()
|
A D | tcp_input.c | 2157 tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + 1); in tcp_enter_loss() 2500 tcp_snd_cwnd_set(tp, icsk->icsk_ca_ops->undo_cwnd(sk)); in tcp_undo_cwnd_reduction() 2648 tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt); in tcp_cwnd_reduction() 2661 tcp_snd_cwnd_set(tp, tp->snd_ssthresh); in tcp_end_cwnd_reduction() 2732 tcp_snd_cwnd_set(tp, max_t(u32, 1U, val)); in tcp_mtup_probe_success() 3056 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in tcp_fastretrans_alert() 6050 tcp_snd_cwnd_set(tp, 1); in tcp_init_transfer() 6052 tcp_snd_cwnd_set(tp, tcp_init_cwnd(tp, __sk_dst_get(sk))); in tcp_init_transfer()
|
A D | tcp_output.c | 155 tcp_snd_cwnd_set(tp, max(cwnd, restart_cwnd)); in tcp_cwnd_restart() 1863 tcp_snd_cwnd_set(tp, (tcp_snd_cwnd(tp) + win_used) >> 1); in tcp_cwnd_application_limited() 2456 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - 1); in tcp_mtu_probe()
|
A D | tcp.c | 434 tcp_snd_cwnd_set(tp, TCP_INIT_CWND); in tcp_init_sock() 3139 tcp_snd_cwnd_set(tp, TCP_INIT_CWND); in tcp_disconnect()
|
/linux-6.3-rc2/include/net/ |
A D | tcp.h | 1230 static inline void tcp_snd_cwnd_set(struct tcp_sock *tp, u32 val) in tcp_snd_cwnd_set() function
|
/linux-6.3-rc2/net/core/ |
A D | filter.c | 5122 tcp_snd_cwnd_set(tp, val); in bpf_sol_tcp_setsockopt()
|
Completed in 59 milliseconds