Searched refs:min_tso_segs (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/sys/netinet/
H A Dtcp_ratelimit.h191 uint32_t new_tso, min_tso_segs; local
206 min_tso_segs = 1;
208 min_tso_segs = 2;
209 if (new_tso < min_tso_segs)
210 new_tso = min_tso_segs;
H A Dtcp_ratelimit.c1616 uint32_t new_tso, min_tso_segs; local
1637 min_tso_segs = 1;
1639 min_tso_segs = 2;
1642 else if (new_tso < min_tso_segs)
1643 new_tso = min_tso_segs;
1702 if (segs < min_tso_segs)
1703 segs = min_tso_segs;
/freebsd-current/sys/netinet/tcp_stacks/
H A Dbbr.c5699 * min_tso_segs = 1
5701 * min_tso_segs = 2
5702 * tso_segs = max(tso_segs, min_tso_segs)
5789 int min_tso_segs; local
5801 min_tso_segs = 1;
5803 min_tso_segs = 2;
5804 if (new_tso < min_tso_segs)
5805 new_tso = min_tso_segs;

Completed in 84 milliseconds