Searched refs:newcwnd (Results 1 – 1 of 1) sorted by relevance
3819 uint32_t maxseg, newcwnd, acks_inflight, ratio, cwnd; in bbr_post_recovery() local3877 newcwnd = roundup((cwnd - val), maxseg); in bbr_post_recovery()3879 newcwnd = maxseg; in bbr_post_recovery()3883 newcwnd = roundup((uint32_t)val, maxseg); in bbr_post_recovery()3891 if ((newcwnd + (acks_inflight * maxseg)) < get_min_cwnd(bbr)) { in bbr_post_recovery()3893 newcwnd = (get_min_cwnd(bbr) - acks_inflight); in bbr_post_recovery()3899 if (newcwnd < (bbr_drop_limit * maxseg)) { in bbr_post_recovery()3900 newcwnd = bbr_drop_limit * maxseg; in bbr_post_recovery()3904 *cwnd_p = newcwnd; in bbr_post_recovery()3905 if (tp->snd_cwnd > newcwnd) in bbr_post_recovery()[all …]