Home
last modified time | relevance | path

Searched refs:usable_swnd (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_output.c3396 int32_t usable_swnd; in tcp_sack_rexmit() local
3416 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rexmit()
3419 if (usable_swnd <= 0) { in tcp_sack_rexmit()
3420 usable_swnd = mss; in tcp_sack_rexmit()
3427 while (usable_swnd > 0) { in tcp_sack_rexmit()
3450 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rexmit()
3451 if (usable_swnd <= 0 || tcp->tcp_unsent == 0) { in tcp_sack_rexmit()
3456 usable_swnd = usable_swnd / mss; in tcp_sack_rexmit()
3458 MAX(usable_swnd * mss, mss); in tcp_sack_rexmit()
3483 usable_swnd -= seg_len; in tcp_sack_rexmit()
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c2493 int32_t usable_swnd; in tcp_sack_rxmit() local
2513 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rxmit()
2516 if (usable_swnd <= 0) { in tcp_sack_rxmit()
2517 usable_swnd = mss; in tcp_sack_rxmit()
2524 while (usable_swnd > 0) { in tcp_sack_rxmit()
2547 usable_swnd = tcp->tcp_cwnd_ssthresh - tcp->tcp_pipe; in tcp_sack_rxmit()
2548 if (usable_swnd <= 0) { in tcp_sack_rxmit()
2553 usable_swnd = usable_swnd / mss; in tcp_sack_rxmit()
2555 MAX(usable_swnd * mss, mss); in tcp_sack_rxmit()
2580 usable_swnd -= seg_len; in tcp_sack_rxmit()