Searched refs:snd_ssthresh (Results 1 – 22 of 22) sorted by relevance
/linux-4.1.27/net/ipv4/ |
D | tcp_vegas.c | 161 return min(tp->snd_ssthresh, tp->snd_cwnd-1); in tcp_vegas_ssthresh() 228 if (diff > gamma && tp->snd_cwnd <= tp->snd_ssthresh) { in tcp_vegas_cong_avoid() 241 tp->snd_ssthresh = tcp_vegas_ssthresh(tp); in tcp_vegas_cong_avoid() 243 } else if (tp->snd_cwnd <= tp->snd_ssthresh) { 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() 284 else if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_vegas_cong_avoid()
|
D | tcp_cubic.c | 151 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init() 344 if (tp->snd_cwnd <= tp->snd_ssthresh) { in bictcp_cong_avoid() 410 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update() 431 tp->snd_ssthresh = tp->snd_cwnd; in hystart_update() 463 if (hystart && tp->snd_cwnd <= tp->snd_ssthresh && in bictcp_acked()
|
D | tcp_hybla.c | 115 if (tp->snd_cwnd < tp->snd_ssthresh) { in hybla_cong_avoid() 161 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh); in hybla_cong_avoid()
|
D | tcp_cong.c | 370 if (cwnd > tp->snd_ssthresh) in tcp_slow_start() 371 cwnd = tp->snd_ssthresh + 1; in tcp_slow_start() 416 if (tp->snd_cwnd <= tp->snd_ssthresh) { in tcp_reno_cong_avoid()
|
D | tcp_metrics.c | 464 } else if (tp->snd_cwnd > tp->snd_ssthresh && in tcp_update_metrics() 469 max(tp->snd_cwnd >> 1, tp->snd_ssthresh)); in tcp_update_metrics() 481 (val + tp->snd_ssthresh) >> 1); in tcp_update_metrics() 485 if (val && tp->snd_ssthresh > val) in tcp_update_metrics() 487 tp->snd_ssthresh); in tcp_update_metrics() 528 tp->snd_ssthresh = val; in tcp_init_metrics() 529 if (tp->snd_ssthresh > tp->snd_cwnd_clamp) in tcp_init_metrics() 530 tp->snd_ssthresh = tp->snd_cwnd_clamp; in tcp_init_metrics() 535 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_metrics()
|
D | tcp_bic.c | 78 tcp_sk(sk)->snd_ssthresh = initial_ssthresh; in bictcp_init() 149 if (tp->snd_cwnd <= tp->snd_ssthresh) in bictcp_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_scalable.c | 25 if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_scalable_cong_avoid()
|
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_highspeed.c | 119 if (tp->snd_cwnd <= tp->snd_ssthresh) in hstcp_cong_avoid()
|
D | tcp_htcp.c | 79 return max(tp->snd_cwnd, (tp->snd_ssthresh << 7) / ca->beta); in htcp_cwnd_undo() 239 if (tp->snd_cwnd <= tp->snd_ssthresh) in htcp_cong_avoid()
|
D | tcp_veno.c | 153 if (tp->snd_cwnd <= tp->snd_ssthresh) { in tcp_veno_cong_avoid()
|
D | tcp_input.c | 1936 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk); in tcp_enter_loss() 2358 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO() 2368 tp->snd_ssthresh, tp->prior_ssthresh, in DBGUNDO() 2399 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh << 1); in tcp_undo_cwnd_reduction() 2401 if (tp->prior_ssthresh > tp->snd_ssthresh) { in tcp_undo_cwnd_reduction() 2402 tp->snd_ssthresh = tp->prior_ssthresh; in tcp_undo_cwnd_reduction() 2406 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh); in tcp_undo_cwnd_reduction() 2505 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk); in tcp_init_cwnd_reduction() 2514 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction() 2519 if (tcp_packets_in_flight(tp) > tp->snd_ssthresh) { in tcp_cwnd_reduction() [all …]
|
D | tcp_illinois.c | 271 if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_illinois_cong_avoid()
|
D | tcp_minisocks.c | 470 newtp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_create_openreq_child()
|
D | tcp.c | 403 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_init_sock() 2214 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; in tcp_disconnect() 2659 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() 1467 tp->snd_ssthresh = tcp_current_ssthresh(sk); in tcp_cwnd_application_limited()
|
D | tcp_ipv4.c | 2243 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh)); in get_tcp4_sock()
|
/linux-4.1.27/include/linux/ |
D | tcp.h | 233 u32 snd_ssthresh; /* Slow start size threshold */ member
|
/linux-4.1.27/include/net/ |
D | tcp.h | 966 return tp->snd_ssthresh >= TCP_INFINITE_SSTHRESH; in tcp_in_initial_slowstart() 984 return tp->snd_ssthresh; in tcp_current_ssthresh() 986 return max(tp->snd_ssthresh, in tcp_current_ssthresh() 1040 if (tp->snd_cwnd <= tp->snd_ssthresh) in tcp_is_cwnd_limited()
|
/linux-4.1.27/Documentation/networking/ |
D | tcp.txt | 17 snd_ssthresh Slow start threshold. We are in slow start if
|
/linux-4.1.27/net/ipv6/ |
D | tcp_ipv6.c | 1732 (tcp_in_initial_slowstart(tp) ? -1 : tp->snd_ssthresh) in get_tcp6_sock()
|