Home
last modified time | relevance | path

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

/linux-4.4.14/net/ipv4/
Dtcp_vegas.c161 return min(tp->snd_ssthresh, tp->snd_cwnd-1); 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_yeah.c78 if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_yeah_cong_avoid()
167 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
Dtcp_metrics.c453 max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); in tcp_update_metrics()
465 (val + tp->snd_ssthresh) >> 1); in tcp_update_metrics()
469 if (val && tp->snd_ssthresh > val) in tcp_update_metrics()
471 tp->snd_ssthresh); in tcp_update_metrics()
512 tp->snd_ssthresh = val; in tcp_init_metrics()
513 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics()
514 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics()
519 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_metrics()
Dtcp_westwood.c245 tp->snd_cwnd = tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event()
248 tp->snd_ssthresh = tcp_westwood_bw_rttmin(sk); in tcp_westwood_event()
Dtcp_cubic.c151 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
410 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
431 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update()
Dtcp_cdg.c163 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
182 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_bic.c78 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
Dtcp_input.c776 if (tp->snd_cwnd < tp->snd_ssthresh / 2) in tcp_update_pacing_rate()
1885 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk); in tcp_enter_loss()
2322 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2332 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO()
2363 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh << 1); in tcp_undo_cwnd_reduction()
2365 if (tp->prior_ssthresh > tp->snd_ssthresh) { in tcp_undo_cwnd_reduction()
2366 tp->snd_ssthresh = tp->prior_ssthresh; in tcp_undo_cwnd_reduction()
2370 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh); in tcp_undo_cwnd_reduction()
2468 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk); in tcp_init_cwnd_reduction()
2477 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction()
[all …]
Dtcp_cong.c379 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
Dtcp_htcp.c79 return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta); in htcp_cwnd_undo()
Dtcp_minisocks.c480 newtp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_create_openreq_child()
Dtcp.c404 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_sock()
2248 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_disconnect()
2696 info->tcpi_snd_ssthresh = tp->snd_ssthresh; in tcp_get_info()
Dtcp_output.c150 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_restart()
1456 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_application_limited()
Dtcp_ipv4.c2214 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)); in get_tcp4_sock()
/linux-4.4.14/include/linux/
Dtcp.h249 u32 snd_ssthresh; /* Slow start size threshold */ member
/linux-4.4.14/include/net/
Dtcp.h1006 return tp->snd_cwnd < tp->snd_ssthresh; in tcp_in_slow_start()
1011 return tp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart()
1029 return tp->snd_ssthresh; in tcp_current_ssthresh()
1031 return max(tp->snd_ssthresh, in tcp_current_ssthresh()
/linux-4.4.14/Documentation/networking/
Dtcp.txt17 snd_ssthresh Slow start threshold. We are in slow start if
/linux-4.4.14/net/ipv6/
Dtcp_ipv6.c1758 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in get_tcp6_sock()