Searched refs:cwnd (Results 1 – 10 of 10) sorted by relevance
/illumos-gate/usr/src/uts/common/inet/cc/ |
H A D | cc_cubic.h | 178 int64_t t, cwnd; in cubic_cwnd() local 196 cwnd = (t - K * MILLISEC) / MILLISEC; in cubic_cwnd() 198 if (cwnd > CUBED_ROOT_MAX_ULONG) in cubic_cwnd() 200 if (cwnd < -CUBED_ROOT_MAX_ULONG) in cubic_cwnd() 204 cwnd *= (cwnd * cwnd); in cubic_cwnd() 212 cwnd = ((cwnd * CUBIC_C_FACTOR * smss) >> CUBIC_SHIFT_4) + wmax; in cubic_cwnd() 217 return (max(0, cwnd)); in cubic_cwnd()
|
H A D | cc_sunreno.c | 91 uint32_t cwnd; in sunreno_ack_received() local 96 cwnd = CCV(ccv, tcp_cwnd); in sunreno_ack_received() 99 if (cwnd >= CCV(ccv, tcp_cwnd_ssthresh)) { in sunreno_ack_received() 111 CCV(ccv, tcp_cwnd_cnt) = cwnd + add; in sunreno_ack_received() 117 CCV(ccv, tcp_cwnd) = MIN(cwnd + add, CCV(ccv, tcp_cwnd_max)); in sunreno_ack_received()
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/hsi_repository/ |
H A D | tcp_common.h | 133 __le32 cwnd /* absolute congestion window */; member 288 __le32 cwnd /* absolute congestion window */; member
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/ |
H A D | ecore_iscsi_api.h | 85 u32 cwnd; member
|
H A D | release.txt | 402 cwnd is wrongfully calculated (as if we are still in slow start 405 Change: [FW] Fix calculation of cwnd.
|
/illumos-gate/usr/src/uts/common/inet/tcp/ |
H A D | tcp_input.c | 2506 uint32_t cwnd; in tcp_input_data() local 4244 cwnd = tcp->tcp_cwnd + mss; in tcp_input_data() 4245 if (cwnd > tcp->tcp_cwnd_max) in tcp_input_data() 4246 cwnd = tcp->tcp_cwnd_max; in tcp_input_data() 4250 uint32_t, cwnd); in tcp_input_data() 4251 tcp->tcp_cwnd = cwnd; in tcp_input_data() 4415 cwnd = tcp->tcp_cwnd_ssthresh + in tcp_input_data() 4419 uint32_t, cwnd); in tcp_input_data() 4420 tcp->tcp_cwnd = cwnd; in tcp_input_data()
|
/illumos-gate/usr/src/stand/lib/tcp/ |
H A D | tcp.c | 2631 uint32_t cwnd; in tcp_rput_data() local 3626 cwnd = tcp->tcp_cwnd + mss; in tcp_rput_data() 3627 if (cwnd > tcp->tcp_cwnd_max) in tcp_rput_data() 3628 cwnd = tcp->tcp_cwnd_max; in tcp_rput_data() 3629 tcp->tcp_cwnd = cwnd; in tcp_rput_data() 3817 cwnd = tcp->tcp_cwnd; in tcp_rput_data() 3820 if (cwnd >= tcp->tcp_cwnd_ssthresh) { in tcp_rput_data() 3832 tcp->tcp_cwnd_cnt = cwnd + add; in tcp_rput_data() 3838 tcp->tcp_cwnd = MIN(cwnd + add, tcp->tcp_cwnd_max); in tcp_rput_data()
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/ |
H A D | lm_l4sp.c | 2298 …ttcp_st->cwnd = tcp->tcp_delegated.send_cwin - tcp->tcp_delegated.send_una; /* i.e… in _lm_tcp_init_tstorm_tcp_context() 2302 if (ttcp_st->cwnd == 0xffffffff) { in _lm_tcp_init_tstorm_tcp_context() 2303 ttcp_st->cwnd = 0x40000000; in _lm_tcp_init_tstorm_tcp_context() 5389 tcp->tcp_delegated.send_cwin = tst_tcp->cwnd + tcp->tcp_delegated.send_una; in lm_tcp_get_delegated()
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/ |
H A D | 5710_hsi.h | 6738 u32_t cwnd /* Congestion window */; member
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/ |
H A D | ecore.tex | 1055 \texttt{cwnd} & Initial congestion window, suggested default value MSS \\ \hline
|