Searched refs:cub_last_max (Results 1 – 3 of 3) sorted by relevance
129 tp->t_ccstate->cub_last_max = tp->snd_ssthresh; in tcp_cubic_cwnd_init_or_reset()149 if (tp->t_ccstate->cub_last_max == 0) { in tcp_cubic_update()150 tp->t_ccstate->cub_last_max = tp->snd_ssthresh; in tcp_cubic_update()163 if (win < tp->t_ccstate->cub_last_max) { in tcp_cubic_update()169 K = ((float)tp->t_ccstate->cub_last_max - win) / tp->t_maxseg / tcp_cubic_coeff; in tcp_cubic_update()173 tp->t_ccstate->cub_origin_point = tp->t_ccstate->cub_last_max; in tcp_cubic_update()248 if (tp->snd_cwnd >= tp->t_ccstate->cub_last_max) { in tcp_cubic_tcpwin()381 if (win < tp->t_ccstate->cub_last_max) { in tcp_cubic_pre_fr()382 tp->t_ccstate->cub_last_max = (uint32_t)((float)win * tcp_cubic_fast_convergence_factor); in tcp_cubic_pre_fr()384 tp->t_ccstate->cub_last_max = win; in tcp_cubic_pre_fr()[all …]
126 tp->t_ccstate->cub_last_max; in tcp_ccdbg_trace()
321 #define cub_last_max __u__._cubic_state_.tc_last_max macro