Lines Matching refs:t_maxseg

127 			     V_tcp_abc_l_var * tp->t_maxseg);  in cc_ack_received()
179 tp->snd_ssthresh = max(2 * tp->t_maxseg, metrics.rmx_ssthresh); in cc_conn_init()
195 tp->snd_cwnd = tp->t_maxseg; /* SYN(-ACK) lost */ in cc_conn_init()
197 tp->snd_cwnd = min(V_tcp_initcwnd_segments * tp->t_maxseg, in cc_conn_init()
198 max(2 * tp->t_maxseg, V_tcp_initcwnd_segments * 1460)); in cc_conn_init()
200 tp->snd_cwnd = min(4 * tp->t_maxseg, in cc_conn_init()
201 max(2 * tp->t_maxseg, 4380)); in cc_conn_init()
204 if (tp->t_maxseg > 2190) in cc_conn_init()
205 tp->snd_cwnd = 2 * tp->t_maxseg; in cc_conn_init()
206 else if (tp->t_maxseg > 1095) in cc_conn_init()
207 tp->snd_cwnd = 3 * tp->t_maxseg; in cc_conn_init()
209 tp->snd_cwnd = 4 * tp->t_maxseg; in cc_conn_init()
250 tp->t_maxseg) * ((uint64_t) tp->t_maxseg); in cc_cong_signal()
251 tp->snd_cwnd = tp->t_maxseg; in cc_cong_signal()
2123 tp->snd_cwnd += tp->t_maxseg; in tcp_do_segment()
2128 tp->snd_cwnd += tp->t_maxseg; in tcp_do_segment()
2167 tp->snd_cwnd = tp->t_maxseg; in tcp_do_segment()
2173 tp->snd_cwnd = tp->t_maxseg; in tcp_do_segment()
2181 ((uint64_t) tp->t_maxseg) * in tcp_do_segment()
2221 tp->t_maxseg; in tcp_do_segment()
2236 if (sent > tp->t_maxseg) { in tcp_do_segment()
2239 (sent == tp->t_maxseg + 1 && in tcp_do_segment()
3030 tp->t_maxopd = tp->t_maxseg = V_tcp_v6mssdflt; in tcp_mss_update()
3141 tp->t_maxseg = mss; in tcp_mss_update()
3256 tp->snd_cwnd = tp->t_maxseg + BYTES_THIS_ACK(tp, th); in tcp_newreno_partial_ack()
3273 tp->snd_cwnd += tp->t_maxseg; in tcp_newreno_partial_ack()