Searched refs:restart_cwnd (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/net/dccp/ccids/ |
H A D | ccid2.c | 217 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-6.6/net/dccp/ccids/ |
H A D | ccid2.c | 220 u32 cwnd = hc->tx_cwnd, restart_cwnd, in ccid2_cwnd_restart() local 227 restart_cwnd = min(cwnd, iwnd); in ccid2_cwnd_restart() 229 while ((delta -= hc->tx_rto) >= 0 && cwnd > restart_cwnd) in ccid2_cwnd_restart() 231 hc->tx_cwnd = max(cwnd, restart_cwnd); in ccid2_cwnd_restart()
|
/kernel/linux/linux-5.10/net/ipv4/ |
H A D | tcp_output.c | 147 u32 restart_cwnd = tcp_init_cwnd(tp, __sk_dst_get(sk)); in tcp_cwnd_restart() local 153 restart_cwnd = min(restart_cwnd, cwnd); in tcp_cwnd_restart() 155 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd) in tcp_cwnd_restart() 157 tp->snd_cwnd = max(cwnd, restart_cwnd); in tcp_cwnd_restart()
|
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | tcp_output.c | 145 u32 restart_cwnd = tcp_init_cwnd(tp, __sk_dst_get(sk)); in tcp_cwnd_restart() local 151 restart_cwnd = min(restart_cwnd, cwnd); in tcp_cwnd_restart() 153 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd) in tcp_cwnd_restart() 155 tcp_snd_cwnd_set(tp, max(cwnd, restart_cwnd)); in tcp_cwnd_restart()
|
Completed in 14 milliseconds