Lines Matching full:congestion
3 * TCP NV: TCP with Congestion Avoidance
7 * Like TCP-Vegas, TCP-NV supports true congestion avoidance,
8 * the ability to detect congestion before packet losses occur.
9 * When congestion (queue buildup) starts to occur, TCP-NV
17 * detect congestion (congestion control) and those that use queue
18 * buildup to detect congestion (congestion avoidance).
25 * 1) Add mechanism to deal with reverse congestion.
39 * nv_cong_dec_mult Decrease cwnd by X% (30%) of congestion when detected
40 * nv_ssthresh_factor On congestion set ssthresh to this * <desired cwnd> / 8
46 * slow-start due to congestion
47 * nv_stop_rtt_cnt Only grow cwnd for this many RTTs after non-congestion
105 * congestion */
115 u32 nv_no_cong_cnt; /* Consecutive no congestion decisions */
189 /* Only grow cwnd if NV has not detected congestion */ in tcpnv_cong_avoid()
237 /* Do congestion avoidance calculations for TCP-NV
336 /* Once per RTT check if we need to do congestion avoidance */ in tcpnv_acked()
375 /* there is congestion, check that it is ok in tcpnv_acked()
415 /* There is no congestion, grow cwnd if allowed*/ in tcpnv_acked()