Lines Matching refs:ssthresh
559 __u32 cwnd, ssthresh, flight_size, pba, pmtu;
569 ssthresh = transport->ssthresh;
573 if (cwnd <= ssthresh) {
575 * o When cwnd is less than or equal to ssthresh, an SCTP
605 "cwnd:%d, ssthresh:%d, flight_size:%d, pba:%d\n",
606 __func__, transport, bytes_acked, cwnd, ssthresh,
609 /* RFC 2960 7.2.2 Whenever cwnd is greater than ssthresh,
640 "bytes_acked:%d, cwnd:%d, ssthresh:%d, "
642 transport, bytes_acked, cwnd, ssthresh,
663 * ssthresh = max(cwnd/2, 4*MTU)
667 transport->ssthresh = max(transport->cwnd/2,
676 /* RFC 2960 7.2.4 Adjust the ssthresh and cwnd of the
684 * ssthresh = max(cwnd/2, 4*MTU)
685 * cwnd = ssthresh
695 transport->ssthresh = max(transport->cwnd/2,
697 transport->cwnd = transport->ssthresh;
708 * slow start threshold "ssthresh".
715 transport->ssthresh = max(transport->cwnd/2,
717 transport->cwnd = transport->ssthresh;
734 transport->ssthresh = transport->cwnd;
740 pr_debug("%s: transport:%p, reason:%d, cwnd:%d, ssthresh:%d\n",
742 transport->ssthresh);
801 * All the congestion control parameters (e.g., cwnd, ssthresh)
807 t->ssthresh = asoc->peer.i.a_rwnd;