Home
last modified time | relevance | path

Searched refs:sf_pmss (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_output.c383 count = chunksize = fp->sf_pmss; in sctp_chunkify()
535 count = chunksize = fp->sf_pmss - in sctp_chunkify()
1138 SET_CWND(fp, fp->sf_pmss, in sctp_output()
1174 if (pathmax > fp->sf_pmss) in sctp_output()
1175 pathmax = fp->sf_pmss; in sctp_output()
1806 ASSERT(pkt_len <= fp->sf_pmss); in sctp_rexmit()
1834 oldfp->sf_ssthresh = 2 * oldfp->sf_pmss; in sctp_rexmit()
1835 oldfp->sf_cwnd = oldfp->sf_pmss; in sctp_rexmit()
1939 while (seglen < fp->sf_pmss) { in sctp_rexmit()
2122 while (seglen < fp->sf_pmss) { in sctp_rexmit_packet()
[all …]
H A Dsctp_common.c213 if ((fp->sf_pmss + hdrlen) != pmtu) { in sctp_get_dest()
215 fp->sf_pmss = (pmtu - hdrlen) & ~(SCTP_ALIGN - 1); in sctp_get_dest()
216 if (fp->sf_cwnd < (fp->sf_pmss * 2)) { in sctp_get_dest()
217 SET_CWND(fp, fp->sf_pmss, in sctp_get_dest()
245 uinfo.iulp_mtu = fp->sf_pmss + in sctp_update_dce()
248 uinfo.iulp_mtu = fp->sf_pmss + in sctp_update_dce()
378 ASSERT(sctp->sctp_current->sf_pmss == sctp->sctp_mss); in sctp_set_ulp_prop()
603 sctp->sctp_mss = fp->sf_pmss; in sctp_set_faddr_current()
1331 sctp->sctp_mss = fp->sf_pmss; in sctp_get_addrparams()
1791 fp->sf_pmss = in sctp_init_faddr()
[all …]
H A Dsctp_input.c2682 2 * fp->sf_pmss; in sctp_process_uo_gaps()
2801 ASSERT(pkt_len <= fp->sf_pmss); in sctp_got_sack()
2939 2 * fp->sf_pmss; in sctp_got_sack()
3113 if (fp->sf_acked > fp->sf_pmss) { in sctp_got_sack()
3114 fp->sf_cwnd += fp->sf_pmss; in sctp_got_sack()
3127 fp->sf_cwnd += fp->sf_pmss; in sctp_got_sack()
3139 fp->sf_pmss; in sctp_got_sack()
3148 if (fp->sf_acked > fp->sf_pmss) { in sctp_got_sack()
3149 fp->sf_cwnd += fp->sf_pmss; in sctp_got_sack()
3159 fp->sf_cwnd += fp->sf_pmss; in sctp_got_sack()
[all …]
H A Dsctp_error.c135 if (len + hdrlen > fp->sf_pmss) { in sctp_user_abort()
136 len = fp->sf_pmss - hdrlen; in sctp_user_abort()
537 mss = fp->sf_pmss; in sctp_add_err()
H A Dsctp.c995 if (mss == fp->sf_pmss) in sctp_update_pmtu()
1001 if (mss > fp->sf_pmss && decrease_only) in sctp_update_pmtu()
1006 fp->sf_pmss, mss); in sctp_update_pmtu()
1008 DTRACE_PROBE2(sctp_update_pmtu, int32_t, fp->sf_pmss, uint32_t, mss); in sctp_update_pmtu()
1019 fp->sf_pmss = mss & ~(SCTP_ALIGN - 1); in sctp_update_pmtu()
H A Dsctp_asconf.c904 if (ofp->sf_ssthresh < 2 * ofp->sf_pmss) in sctp_rc_timer()
905 ofp->sf_ssthresh = 2 * ofp->sf_pmss; in sctp_rc_timer()
906 ofp->sf_cwnd = ofp->sf_pmss; in sctp_rc_timer()
H A Dsctp_conn.c548 sctp->sctp_mss = cur_fp->sf_pmss; in sctp_connect()
H A Dsctp_opt_data.c108 sp->spinfo_mtu += fp->sf_pmss; in sctp_get_status()
186 infop->spinfo_mtu = fp->sf_pmss; in sctp_get_paddrinfo()
H A Dsctp_impl.h559 uint32_t sf_pmss; member
H A Dsctp_cookie.c1162 if ((ceclen + seglen) > fp->sf_pmss || in sctp_send_cookie_echo()
/illumos-gate/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c159 mdb_printf("pmss\t\t%?u\tcwnd\t\t%?u\n", fa->sf_pmss, fa->sf_cwnd); in sctp_faddr()