Lines Matching refs:ssthresh
401 __u32 cwnd, ssthresh, flight_size, pba, pmtu;
411 ssthresh = transport->ssthresh;
415 if (cwnd <= ssthresh) {
417 * o When cwnd is less than or equal to ssthresh, an SCTP
447 "cwnd:%d, ssthresh:%d, flight_size:%d, pba:%d\n",
448 __func__, transport, bytes_acked, cwnd, ssthresh,
451 /* RFC 2960 7.2.2 Whenever cwnd is greater than ssthresh,
482 "bytes_acked:%d, cwnd:%d, ssthresh:%d, "
484 transport, bytes_acked, cwnd, ssthresh,
505 * ssthresh = max(cwnd/2, 4*MTU)
509 transport->ssthresh = max(transport->cwnd/2,
518 /* RFC 2960 7.2.4 Adjust the ssthresh and cwnd of the
526 * ssthresh = max(cwnd/2, 4*MTU)
527 * cwnd = ssthresh
537 transport->ssthresh = max(transport->cwnd/2,
539 transport->cwnd = transport->ssthresh;
550 * slow start threshold "ssthresh".
557 transport->ssthresh = max(transport->cwnd/2,
559 transport->cwnd = transport->ssthresh;
576 transport->ssthresh = transport->cwnd;
582 pr_debug("%s: transport:%p, reason:%d, cwnd:%d, ssthresh:%d\n",
584 transport->ssthresh);
643 * All the congestion control parameters (e.g., cwnd, ssthresh)
649 t->ssthresh = asoc->peer.i.a_rwnd;