Lines Matching refs:cwnd_growth_factor
86 s8 cwnd_growth_factor; /* Current cwnd growth factor, member
165 ca->cwnd_growth_factor = 0; in tcpnv_init()
200 if (ca->cwnd_growth_factor < 0) { in tcpnv_cong_avoid()
201 cnt = tp->snd_cwnd << -ca->cwnd_growth_factor; in tcpnv_cong_avoid()
204 cnt = max(4U, tp->snd_cwnd >> ca->cwnd_growth_factor); in tcpnv_cong_avoid()
228 if (ca->cwnd_growth_factor > 0) in tcpnv_state()
229 ca->cwnd_growth_factor = 0; in tcpnv_state()
232 ca->cwnd_growth_factor > -8) in tcpnv_state()
233 ca->cwnd_growth_factor--; in tcpnv_state()
412 if (ca->cwnd_growth_factor > 0) in tcpnv_acked()
413 ca->cwnd_growth_factor = 0; in tcpnv_acked()
422 if (ca->cwnd_growth_factor < 0 && in tcpnv_acked()
425 ca->cwnd_growth_factor++; in tcpnv_acked()
427 } else if (ca->cwnd_growth_factor >= 0 && in tcpnv_acked()
431 ca->cwnd_growth_factor++; in tcpnv_acked()