Lines Matching defs:ssthresh
116 * 6 - We enter CA ssthresh is also in flex1.
542 * If inflight data is less than ssthresh, set cwnd
624 * Update the ssthresh in the event of congestion.
630 uint32_t ssthresh;
645 ssthresh = newreno_cc_cwnd_on_multiplicative_decrease(ccv, maxseg);
649 * On the first congestion event, set ssthresh to cwnd * 0.5
653 ssthresh = cwnd >> 1;
657 * On subsequent congestion events, set ssthresh to cwnd * beta.
659 ssthresh = ((uint64_t)cwnd * CUBIC_BETA) >> CUBIC_SHIFT;
661 CCV(ccv, snd_ssthresh) = max(ssthresh, 2 * maxseg);