Home
last modified time | relevance | path

Searched refs:tcp_snd_cwnd_set (Results 1 – 16 of 16) sorted by relevance

/linux/net/ipv4/
H A Dtcp_hybla.c57 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()
H A Dtcp_vegas.c241 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()
H A Dtcp_veno.c175 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()
H A Dtcp_yeah.c145 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()
H A Dtcp_nv.c407 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()
H A Dtcp_lp.c319 tcp_snd_cwnd_set(tp, 1U); in tcp_lp_pkts_acked()
324 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp) >> 1U, 1U)); in tcp_lp_pkts_acked()
H A Dtcp_highspeed.c145 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in hstcp_cong_avoid()
H A Dtcp_westwood.c248 tcp_snd_cwnd_set(tp, tp->snd_ssthresh); in tcp_westwood_event()
H A Dtcp_bbr.c548 tcp_snd_cwnd_set(tp, min(cwnd, tp->snd_cwnd_clamp)); /* apply global cap */ in bbr_set_cwnd()
550 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp), bbr_cwnd_min_target)); in bbr_set_cwnd()
918 tcp_snd_cwnd_set(tp, max(tcp_snd_cwnd(tp), bbr->prior_cwnd)); in bbr_check_probe_rtt_done()
H A Dtcp_illinois.c288 tcp_snd_cwnd_set(tp, min(tcp_snd_cwnd(tp) + delta / tcp_snd_cwnd(tp), in tcp_illinois_cong_avoid()
H A Dtcp_htcp.c247 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in htcp_cong_avoid()
H A Dtcp_input.c2369 tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + 1); in tcp_enter_loss()
2655 tcp_snd_cwnd_set(tp, icsk->icsk_ca_ops->undo_cwnd(sk)); in tcp_undo_cwnd_reduction()
2805 tcp_snd_cwnd_set(tp, tcp_packets_in_flight(tp) + sndcnt); in tcp_cwnd_reduction()
2818 tcp_snd_cwnd_set(tp, tp->snd_ssthresh); in tcp_end_cwnd_reduction()
2889 tcp_snd_cwnd_set(tp, max_t(u32, 1U, val)); in tcp_mtup_probe_success()
3227 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) + 1); in tcp_fastretrans_alert()
6507 tcp_snd_cwnd_set(tp, 1); in tcp_init_transfer()
6509 tcp_snd_cwnd_set(tp, tcp_init_cwnd(tp, __sk_dst_get(sk))); in tcp_init_transfer()
H A Dtcp_output.c160 tcp_snd_cwnd_set(tp, max(cwnd, restart_cwnd)); in tcp_cwnd_restart()
2066 tcp_snd_cwnd_set(tp, (tcp_snd_cwnd(tp) + win_used) >> 1); in tcp_cwnd_application_limited()
2718 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - 1); in tcp_mtu_probe()
H A Dtcp.c465 tcp_snd_cwnd_set(tp, TCP_INIT_CWND); in tcp_init_sock()
3411 tcp_snd_cwnd_set(tp, TCP_INIT_CWND); in tcp_disconnect()
/linux/include/net/
H A Dtcp.h1410 static inline void tcp_snd_cwnd_set(struct tcp_sock *tp, u32 val) in tcp_snd_cwnd_set() function
/linux/net/core/
H A Dfilter.c5382 tcp_snd_cwnd_set(tp, val); in bpf_sol_tcp_setsockopt()