Lines Matching defs:window
138 * @window: sliding window size for congestion handling
139 * @min_win: minimal send window to be used by link
141 * @max_win: maximal send window to be used by link
143 * @checkpoint: seq number for congestion window size handling
205 u16 window;
483 * @min_win: minimal send window to be used by link
484 * @max_win: maximal send window to be used by link
564 * @min_win: minimal send window to be used by link
565 * @max_win: maximal send window to be used by link
1047 unsigned int cwin = l->window;
1134 u16 cwin = l->window;
1138 l->ssthresh = max_t(u16, l->window / 2, 300);
1139 l->window = min_t(u16, l->ssthresh, l->window);
1144 l->ssthresh = max_t(u16, l->window / 2, 300);
1145 l->window = l->min_win;
1148 /* Don't increase window if no pressure on the transmit queue */
1152 /* Don't increase window if there are holes the transmit queue */
1160 l->window = min_t(u16, cwin + released, l->max_win);
1166 l->window = min_t(u16, ++cwin, l->max_win);
1179 u16 cwin = l->window;
1815 /* Drop if outside receive window */
2446 /* Ignore if peers_snd_nxt goes beyond receive window */
2447 if (more(peers_snd_nxt, l->rcv_nxt + l->window))
2559 l->window = min_win;
2736 link->window))