Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/net/dccp/ccids/
Dccid2.c217 u32 cwnd = hc->tx_cwnd, restart_cwnd, in ccid2_cwnd_restart() local
224 restart_cwnd = min(cwnd, iwnd); in ccid2_cwnd_restart()
226 while ((delta -= hc->tx_rto) >= 0 && cwnd > restart_cwnd) in ccid2_cwnd_restart()
228 hc->tx_cwnd = max(cwnd, restart_cwnd); in ccid2_cwnd_restart()
/kernel/linux/linux-5.10/net/ipv4/
Dtcp_output.c144 u32 restart_cwnd = tcp_init_cwnd(tp, __sk_dst_get(sk)); in tcp_cwnd_restart() local
150 restart_cwnd = min(restart_cwnd, cwnd); in tcp_cwnd_restart()
152 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd) in tcp_cwnd_restart()
154 tp->snd_cwnd = max(cwnd, restart_cwnd); in tcp_cwnd_restart()