Searched defs:snd_cwnd (Results 1 - 2 of 2) sorted by relevance

/net/ipv4/
H A Dtcp_cong.c289 if (in_flight >= tp->snd_cwnd)
292 left = tp->snd_cwnd - in_flight;
294 left * sysctl_tcp_tso_win_divisor < tp->snd_cwnd &&
313 u32 snd_cwnd = tp->snd_cwnd; local
315 if (unlikely(!snd_cwnd)) {
316 pr_err_once("snd_cwnd is nul, please report this bug.\n");
317 snd_cwnd = 1U;
320 if (sysctl_tcp_max_ssthresh > 0 && tp->snd_cwnd > sysctl_tcp_max_ssthresh)
323 cnt = snd_cwnd; /* exponentia
[all...]
H A Dtcp_probe.c63 u32 snd_cwnd; member in struct:tcp_log
102 (full || tp->snd_cwnd != tcp_probe.lastcwnd)) {
117 p->snd_cwnd = tp->snd_cwnd;
124 tcp_probe.lastcwnd = tp->snd_cwnd;
166 p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt);

Completed in 61 milliseconds