Lines Matching full:mss
395 uint32_t mss = tcp_fixed_maxseg(ccv->tp); in newreno_cc_post_recovery() local
408 * Ensure that cwnd does not collapse to 1 MSS under in newreno_cc_post_recovery()
411 CCV(ccv, snd_cwnd) = max(pipe, mss) + mss; in newreno_cc_post_recovery()
450 newreno_cc_cwnd_on_multiplicative_decrease(struct cc_var *ccv, uint32_t mss) in newreno_cc_cwnd_on_multiplicative_decrease() argument
462 return max(((uint64_t)cwin * (uint64_t)factor) / (100ULL * (uint64_t)mss), 2) * mss; in newreno_cc_cwnd_on_multiplicative_decrease()
471 uint32_t cwin, mss, pipe; in newreno_cc_cong_signal() local
473 mss = tcp_fixed_maxseg(ccv->tp); in newreno_cc_cong_signal()
479 cwin = newreno_cc_cwnd_on_multiplicative_decrease(ccv, mss); in newreno_cc_cong_signal()
500 min(CCV(ccv, snd_wnd), pipe) / 2 / mss) * mss; in newreno_cc_cong_signal()
502 CCV(ccv, snd_cwnd) = mss; in newreno_cc_cong_signal()
553 u_int mss = tcp_fixed_maxseg(ccv->tp); in newreno_cc_cwnd_in_slow_start() local
554 u_int incr = mss; in newreno_cc_cwnd_in_slow_start()
592 ccv->nsegs * abc_val * mss); in newreno_cc_cwnd_in_slow_start()
594 incr = min(ccv->bytes_this_ack, mss); in newreno_cc_cwnd_in_slow_start()