Searched refs:snd_ssthresh (Results 1 – 19 of 19) sorted by relevance
/linux-4.4.14/net/ipv4/ |
D | tcp_vegas.c | 161 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()
|
D | tcp_yeah.c | 78 if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_yeah_cong_avoid() 167 tp->snd_ssthresh = tp->snd_cwnd; in tcp_yeah_cong_avoid()
|
D | tcp_metrics.c | 453 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()
|
D | tcp_westwood.c | 245 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()
|
D | tcp_cubic.c | 151 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()
|
D | tcp_cdg.c | 163 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update() 182 tp->snd_ssthresh = tp->snd_cwnd; in tcp_cdg_hystart_update()
|
D | tcp_hybla.c | 161 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh); in hybla_cong_avoid()
|
D | tcp_bic.c | 78 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init()
|
D | tcp_input.c | 776 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 …]
|
D | tcp_cong.c | 379 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh); in tcp_slow_start()
|
D | tcp_htcp.c | 79 return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta); in htcp_cwnd_undo()
|
D | tcp_minisocks.c | 480 newtp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_create_openreq_child()
|
D | tcp.c | 404 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()
|
D | tcp_output.c | 150 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_restart() 1456 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_application_limited()
|
D | tcp_ipv4.c | 2214 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)); in get_tcp4_sock()
|
/linux-4.4.14/include/linux/ |
D | tcp.h | 249 u32 snd_ssthresh; /* Slow start size threshold */ member
|
/linux-4.4.14/include/net/ |
D | tcp.h | 1006 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/ |
D | tcp.txt | 17 snd_ssthresh Slow start threshold. We are in slow start if
|
/linux-4.4.14/net/ipv6/ |
D | tcp_ipv6.c | 1758 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in get_tcp6_sock()
|