Home
last modified time | relevance | path

Searched refs:newcwnd (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c3804 uint32_t maxseg, newcwnd, acks_inflight, ratio, cwnd; in bbr_post_recovery() local
3862 newcwnd = roundup((cwnd - val), maxseg); in bbr_post_recovery()
3864 newcwnd = maxseg; in bbr_post_recovery()
3868 newcwnd = roundup((uint32_t)val, maxseg); in bbr_post_recovery()
3876 if ((newcwnd + (acks_inflight * maxseg)) < get_min_cwnd(bbr)) { in bbr_post_recovery()
3878 newcwnd = (get_min_cwnd(bbr) - acks_inflight); in bbr_post_recovery()
3884 if (newcwnd < (bbr_drop_limit * maxseg)) { in bbr_post_recovery()
3885 newcwnd = bbr_drop_limit * maxseg; in bbr_post_recovery()
3889 *cwnd_p = newcwnd; in bbr_post_recovery()
3890 if (tp->snd_cwnd > newcwnd) in bbr_post_recovery()
[all …]