Home
last modified time | relevance | path

Searched refs:tcp_cwnd_ssthresh (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/cc/
H A Dcc_sunreno.c99 if (cwnd >= CCV(ccv, tcp_cwnd_ssthresh)) { in sunreno_ack_received()
162 CCV(ccv, tcp_cwnd_ssthresh) = MAX(npkt, 2) * in sunreno_cong_signal()
172 CCV(ccv, tcp_cwnd_ssthresh) = MAX(npkt, 2) * mss; in sunreno_cong_signal()
197 npkt = CCV(ccv, tcp_cwnd_ssthresh) / 2 / mss; in sunreno_cong_signal()
198 CCV(ccv, tcp_cwnd_ssthresh) = MAX(npkt, 2) * mss; in sunreno_cong_signal()
217 if (CCV(ccv, tcp_cwnd) > CCV(ccv, tcp_cwnd_ssthresh)) { in sunreno_post_recovery()
218 CCV(ccv, tcp_cwnd) = CCV(ccv, tcp_cwnd_ssthresh); in sunreno_post_recovery()
H A Dcc_newreno.c143 if (cw > CCV(ccv, tcp_cwnd_ssthresh)) { in newreno_ack_received()
234 CCV(ccv, tcp_cwnd_ssthresh) = ssthresh_on_loss; in newreno_cong_signal()
242 CCV(ccv, tcp_cwnd_ssthresh) = ssthresh_on_loss; in newreno_cong_signal()
248 CCV(ccv, tcp_cwnd_ssthresh) = ssthresh_on_loss; in newreno_cong_signal()
271 if (pipe < CCV(ccv, tcp_cwnd_ssthresh)) { in newreno_post_recovery()
278 } else if (CCV(ccv, tcp_cwnd) > CCV(ccv, tcp_cwnd_ssthresh)) { in newreno_post_recovery()
279 CCV(ccv, tcp_cwnd) = CCV(ccv, tcp_cwnd_ssthresh); in newreno_post_recovery()
H A Dcc_cubic.c169 CCV(ccv, tcp_cwnd) <= CCV(ccv, tcp_cwnd_ssthresh) || in cubic_ack_received()
172 if (CCV(ccv, tcp_cwnd) <= CCV(ccv, tcp_cwnd_ssthresh) || in cubic_ack_received()
307 CCV(ccv, tcp_cwnd_ssthresh); in cubic_cong_signal()
320 CCV(ccv, tcp_cwnd) = CCV(ccv, tcp_cwnd_ssthresh); in cubic_cong_signal()
389 if (pipe < CCV(ccv, tcp_cwnd_ssthresh)) { in cubic_post_recovery()
477 CCV(ccv, tcp_cwnd_ssthresh) = CCV(ccv, tcp_cwnd) >> 1; in cubic_ssthresh_update()
479 CCV(ccv, tcp_cwnd_ssthresh) = in cubic_ssthresh_update()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp_inet.h132 uint32_t tcp_cwnd_ssthresh; /* Congestion window */ member
H A Dtcp.c2513 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rxmit()
3438 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) * mss; in tcp_rput_data()
3534 tcp->tcp_cwnd_ssthresh = npkt * mss; in tcp_rput_data()
3601 tcp->tcp_cwnd_ssthresh; in tcp_rput_data()
3719 if (tcp->tcp_cwnd > tcp->tcp_cwnd_ssthresh) { in tcp_rput_data()
3720 tcp->tcp_cwnd = tcp->tcp_cwnd_ssthresh; in tcp_rput_data()
3753 tcp->tcp_cwnd = tcp->tcp_cwnd_ssthresh + in tcp_rput_data()
3820 if (cwnd >= tcp->tcp_cwnd_ssthresh) { in tcp_rput_data()
4368 tcp->tcp_cwnd_ssthresh : in tcp_timer()
4374 tcp->tcp_cwnd_ssthresh = npkt * in tcp_timer()
[all …]
/illumos-gate/usr/src/uts/common/inet/
H A Dtcp.h281 uint32_t tcp_cwnd_ssthresh; /* Congestion window */ member
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_input.c190 if (tcp->tcp_cwnd > tcp->tcp_cwnd_ssthresh) { in cc_ack_received()
226 uint32_t old_cwnd_ssthresh = tcp->tcp_cwnd_ssthresh; in cc_cong_signal()
262 tcp->tcp_cwnd_ssthresh = max( in cc_cong_signal()
283 uint32_t, tcp->tcp_cwnd_ssthresh, uint32_t, type); in cc_cong_signal()
4149 tcp->tcp_cwnd_ssthresh; in tcp_input_data()
4347 cwnd = tcp->tcp_cwnd_ssthresh + in tcp_input_data()
5785 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) * tcp->tcp_mss; in tcp_icmp_input()
H A Dtcp.c648 tcp->tcp_cwnd_ssthresh = uinfo.iulp_ssthresh; in tcp_set_destination()
650 tcp->tcp_cwnd_ssthresh = TCP_MAX_LARGEWIN; in tcp_set_destination()
2188 DONTCARE(tcp->tcp_cwnd_ssthresh); /* Init in tcp_set_destination */ in tcp_reinit_values()
2439 tcp->tcp_cwnd_ssthresh = TCP_MAX_LARGEWIN; in tcp_init_values()
H A Dtcp_output.c3347 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rexmit()
3381 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rexmit()
/illumos-gate/usr/src/lib/libdtrace/common/
H A Dtcp.d.in243 tcps_cwnd_ssthresh = T ? T->tcp_cwnd_ssthresh : 0;