Searched refs:maxseg (Results 1 – 5 of 5) sorted by relevance
| /f-stack/freebsd/netinet/ |
| H A D | tcp_input.c | 388 u_int maxseg; in cc_conn_init() local 394 maxseg = tcp_maxseg(tp); in cc_conn_init() 2512 u_int maxseg; in tcp_do_segment() local 2701 maxseg * in tcp_do_segment() 2733 maxseg; in tcp_do_segment() 3959 maxseg; in tcp_prr_partialack() 4036 return min(4 * maxseg, max(2 * maxseg, 4380)); in tcp_compute_initwnd() 4039 if (maxseg > 2190) in tcp_compute_initwnd() 4040 return (2 * maxseg); in tcp_compute_initwnd() 4042 return (3 * maxseg); in tcp_compute_initwnd() [all …]
|
| H A D | tcp_sack.c | 790 u_int maxseg = tcp_maxseg(tp); in tcp_sack_partialack() local 796 if ((BYTES_THIS_ACK(tp, th) / maxseg) >= 2) in tcp_sack_partialack() 799 (tp->snd_nxt - tp->snd_recover) + num_segs * maxseg); in tcp_sack_partialack()
|
| /f-stack/freebsd/netinet/tcp_stacks/ |
| H A D | bbr.c | 3566 num_segs = (len + maxseg - 1) / maxseg; in bbr_get_pacing_delay() 3691 cwnd = maxseg; in bbr_ack_received() 3693 cwnd = maxseg; in bbr_ack_received() 4565 uint32_t maxseg; in bbr_timeout_tlp() local 4604 amm = maxseg; in bbr_timeout_tlp() 5839 new_tso = (PACE_MAX_IP_BYTES / maxseg) * maxseg; in tcp_bbr_tso_size_check() 8091 uint32_t maxseg; in bbr_collapsed_window() local 12335 len = maxseg; in bbr_output_wtime() 12361 len = maxseg; in bbr_output_wtime() 13151 len = maxseg; in bbr_output_wtime() [all …]
|
| /f-stack/freebsd/netinet/cc/ |
| H A D | cc_cubic.c | 81 static void cubic_ssthresh_update(struct cc_var *ccv, uint32_t maxseg); 453 cubic_ssthresh_update(struct cc_var *ccv, uint32_t maxseg) in cubic_ssthresh_update() argument 483 CCV(ccv, snd_ssthresh) = max(ssthresh, 2 * maxseg); in cubic_ssthresh_update()
|
| /f-stack/freebsd/kern/ |
| H A D | uipc_mbuf.c | 1654 m_uiotombuf_nomap(struct uio *uio, int how, int len, int maxseg, int flags) in m_uiotombuf_nomap() argument 1674 if (maxseg == 0) in m_uiotombuf_nomap() 1675 maxseg = MBUF_PEXT_MAX_PGS * PAGE_SIZE; in m_uiotombuf_nomap() 1705 needed = length = MIN(maxseg, total); in m_uiotombuf_nomap()
|