Lines Matching refs:ss_threshold
148 if (tp_vars->cwnd <= tp_vars->ss_threshold) {
416 "Final values: cwnd=%u ss_threshold=%u\n",
417 tp_vars->cwnd, tp_vars->ss_threshold);
483 * Switch to Slow Start, set the ss_threshold to half of the current cwnd and
508 tp_vars->ss_threshold = tp_vars->cwnd >> 1;
509 if (tp_vars->ss_threshold < BATADV_TP_PLEN * 2)
510 tp_vars->ss_threshold = BATADV_TP_PLEN * 2;
514 tp_vars->other_end, tp_vars->cwnd, tp_vars->ss_threshold,
699 tp_vars->ss_threshold = tp_vars->cwnd >> 1;
702 tp_vars->cwnd, tp_vars->ss_threshold,
704 tp_vars->cwnd = batadv_tp_cwnd(tp_vars->ss_threshold, 3 * mss,
734 /* set cwnd to the value of ss_threshold at the
738 cwnd = batadv_tp_cwnd(tp_vars->ss_threshold, 0,
1002 tp_vars->ss_threshold = BATADV_TP_AWND;