Home
last modified time | relevance | path

Searched refs:tcp_cwnd (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/tools/testing/selftests/bpf/progs/
Dbpf_cubic.c84 __u32 tcp_cwnd; /* estimated tcp cwnd */ member
105 ca->tcp_cwnd = 0; in bictcp_reset()
297 ca->tcp_cwnd = cwnd; /* syn with cubic */ in bictcp_update()
369 ca->tcp_cwnd += n; in bictcp_update()
372 if (ca->tcp_cwnd > cwnd) { /* if bic is slower than tcp */ in bictcp_update()
373 delta = ca->tcp_cwnd - cwnd; in bictcp_update()
/Linux-v5.10/net/ipv4/
Dtcp_cubic.c95 u32 tcp_cwnd; /* estimated tcp cwnd */ member
116 ca->tcp_cwnd = 0; in bictcp_reset()
245 ca->tcp_cwnd = cwnd; /* syn with cubic */ in bictcp_update()
314 ca->tcp_cwnd++; in bictcp_update()
317 if (ca->tcp_cwnd > cwnd) { /* if bic is slower than tcp */ in bictcp_update()
318 delta = ca->tcp_cwnd - cwnd; in bictcp_update()