Searched refs:t_maxopd (Results 1 - 8 of 8) sorted by relevance

/freebsd-10-stable/sys/netinet/
H A Dtcp_timer.c642 optlen = tp->t_maxopd - tp->t_maxseg;
643 tp->t_pmtud_saved_maxopd = tp->t_maxopd;
652 tp->t_maxopd > V_tcp_v6pmtud_blackhole_mss) {
654 tp->t_maxopd = V_tcp_v6pmtud_blackhole_mss;
658 tp->t_maxopd = V_tcp_v6mssdflt;
671 if (tp->t_maxopd > V_tcp_pmtud_blackhole_mss) {
673 tp->t_maxopd = V_tcp_pmtud_blackhole_mss;
677 tp->t_maxopd = V_tcp_mssdflt;
686 tp->t_maxseg = tp->t_maxopd - optlen;
706 optlen = tp->t_maxopd
[all...]
H A Dtcp_output.c838 * bump the packet length beyond the t_maxopd length.
842 if (len + optlen + ipoptlen > tp->t_maxopd) {
945 max_len = (tp->t_maxopd - optlen);
975 len = tp->t_maxopd - optlen - ipoptlen;
1286 KASSERT(len > tp->t_maxopd - optlen,
1289 m->m_pkthdr.tso_segsz = tp->t_maxopd - optlen;
1356 if (V_path_mtu_discovery && tp->t_maxopd > V_tcp_minmss)
1397 if (V_path_mtu_discovery && tp->t_maxopd > V_tcp_minmss) {
H A Dtcp_input.c499 (tlen <= tp->t_maxopd) && \
3601 tp->t_maxopd = tp->t_maxseg = V_tcp_v6mssdflt;
3610 tp->t_maxopd = tp->t_maxseg = V_tcp_mssdflt;
3634 * already assigned to t_maxopd above.
3636 offer = tp->t_maxopd;
3722 tp->t_maxopd = mss;
H A Dtcp_var.h148 u_int t_maxopd; /* mss plus options */ member in struct:tcpcb
H A Dtcp_usrreq.c2122 db_printf("t_maxopd: %u t_rcvtime: %u t_startime: %u\n",
2123 tp->t_maxopd, tp->t_rcvtime, tp->t_starttime);
H A Dtcp_subr.c887 tp->t_maxseg = tp->t_maxopd =
/freebsd-10-stable/sys/dev/cxgb/ulp/tom/
H A Dcxgb_cpl_io.c1537 tp->t_maxseg = tp->t_maxopd = sc->params.mtus[G_TCPOPT_MSS(tcpopt)] - 40;
/freebsd-10-stable/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c258 tp->t_maxseg = tp->t_maxopd = sc->params.mtus[G_TCPOPT_MSS(opt)] - n;

Completed in 81 milliseconds