Searched refs:ss_threshold (Results 1 – 2 of 2) sorted by relevance
148 if (tp_vars->cwnd <= tp_vars->ss_threshold) { in batadv_tp_update_cwnd() 416 "Final values: cwnd=%u ss_threshold=%u\n", in batadv_tp_sender_end() 417 tp_vars->cwnd, tp_vars->ss_threshold); in batadv_tp_sender_end() 483 * Switch to Slow Start, set the ss_threshold to half of the current cwnd and508 tp_vars->ss_threshold = tp_vars->cwnd >> 1; in batadv_tp_sender_timeout() 509 if (tp_vars->ss_threshold < BATADV_TP_PLEN * 2) in batadv_tp_sender_timeout() 510 tp_vars->ss_threshold = BATADV_TP_PLEN * 2; in batadv_tp_sender_timeout() 514 tp_vars->other_end, tp_vars->cwnd, tp_vars->ss_threshold, in batadv_tp_sender_timeout() 699 tp_vars->ss_threshold = tp_vars->cwnd >> 1; in batadv_tp_recv_ack() 702 tp_vars->cwnd, tp_vars->ss_threshold, in batadv_tp_recv_ack() [all...]
1473 * @ss_threshold: Slow Start threshold. Once cwnd exceeds this value the1476 u32 ss_threshold; member