Lines Matching defs:max_win
246 u32 rate, max_win, cwnd_by_slope;
368 max_win = cwnd_by_slope + nv_pad;
370 /* If cwnd > max_win, decrease cwnd
371 * if cwnd < max_win, grow cwnd
374 if (tcp_snd_cwnd(tp) > max_win) {
400 (nv_ssthresh_factor * max_win) >> 3;
401 if (tcp_snd_cwnd(tp) - max_win > 2) {
405 dec = max(2U, ((tcp_snd_cwnd(tp) - max_win) *
409 tcp_snd_cwnd_set(tp, max_win);
414 } else if (tcp_snd_cwnd(tp) <= max_win - nv_pad_buffer) {