Home
last modified time | relevance | path

Searched refs:snd_ssthresh (Results 1 – 23 of 23) sorted by relevance

/Linux-v4.19/net/ipv4/
Dtcp_vegas.c161 return min(tp->snd_ssthresh, tp->snd_cwnd); in tcp_vegas_ssthresh()
241 tp->snd_ssthresh = tcp_vegas_ssthresh(tp); in tcp_vegas_cong_avoid()
257 tp->snd_ssthresh in tcp_vegas_cong_avoid()
276 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_vegas_cong_avoid()
Dtcp_metrics.c405 max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); in tcp_update_metrics()
417 (val + tp->snd_ssthresh) >> 1); in tcp_update_metrics()
421 if (val && tp->snd_ssthresh > val) in tcp_update_metrics()
423 tp->snd_ssthresh); in tcp_update_metrics()
463 tp->snd_ssthresh = val; in tcp_init_metrics()
464 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics()
465 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
470 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_metrics()
Dtcp_cubic.c149 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
399 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
420 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
Dtcp_westwood.c246 tp->snd_cwnd = tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event()
249 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event()
Dtcp_nv.c384 } else if (tp->snd_ssthresh == TCP_INFINITE_SSTHRESH) { in tcpnv_acked()
399 tp->snd_ssthresh = in tcpnv_acked()
Dtcp_cdg.c164 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
183 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
Dtcp_hybla.c161 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh); in hybla_cong_avoid()
Dtcp_bbr.c739 tcp_sk(sk)->snd_ssthresh = in bbr_check_drain()
856 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in bbr_init()
908 return tcp_sk(sk)->snd_ssthresh; in bbr_ssthresh()
Dtcp_yeah.c168 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
Dtcp_bic.c76 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
Dtcp_input.c822 if (tp->snd_cwnd < tp->snd_ssthresh / 2) in tcp_update_pacing_rate()
1993 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk); in tcp_enter_loss()
2320 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2329 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2355 if (tp->prior_ssthresh > tp->snd_ssthresh) { in tcp_undo_cwnd_reduction()
2356 tp->snd_ssthresh = tp->prior_ssthresh; in tcp_undo_cwnd_reduction()
2463 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk); in tcp_init_cwnd_reduction()
2471 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction()
2478 u64 dividend = (u64)tp->snd_ssthresh * tp->prr_delivered + in tcp_cwnd_reduction()
2502 if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH && in tcp_end_cwnd_reduction()
[all …]
Dtcp_cong.c395 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
Dtcp_minisocks.c491 newtp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_create_openreq_child()
Dtcp.c435 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_sock()
2578 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_disconnect()
3181 info->tcpi_snd_ssthresh = tp->snd_ssthresh; in tcp_get_info()
3279 nla_put_u32(stats, TCP_NLA_SND_SSTHRESH, tp->snd_ssthresh); in tcp_get_timestamping_opt_stats()
Dtcp_output.c133 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_restart()
1605 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_application_limited()
Dtcp_ipv4.c2358 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)); in get_tcp4_sock()
/Linux-v4.19/include/linux/
Dtcp.h280 u32 snd_ssthresh; /* Slow start size threshold */ member
/Linux-v4.19/Documentation/networking/
Dtcp.txt17 snd_ssthresh Slow start threshold. We are in slow start if
/Linux-v4.19/include/net/
Dtcp.h1152 return tp->snd_cwnd < tp->snd_ssthresh; in tcp_in_slow_start()
1157 return tp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart()
1175 return tp->snd_ssthresh; in tcp_current_ssthresh()
1177 return max(tp->snd_ssthresh, in tcp_current_ssthresh()
/Linux-v4.19/tools/include/uapi/linux/
Dbpf.h2573 __u32 snd_ssthresh; member
/Linux-v4.19/include/uapi/linux/
Dbpf.h2573 __u32 snd_ssthresh; member
/Linux-v4.19/net/core/
Dfilter.c4013 tp->snd_ssthresh = val; in BPF_CALL_5()
6624 case offsetof(struct bpf_sock_ops, snd_ssthresh): in sock_ops_convert_ctx_access()
6625 SOCK_OPS_GET_FIELD(snd_ssthresh, snd_ssthresh, struct tcp_sock); in sock_ops_convert_ctx_access()
/Linux-v4.19/net/ipv6/
Dtcp_ipv6.c1867 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in get_tcp6_sock()