Home
last modified time | relevance | path

Searched refs:sf_cwnd (Results 1 – 7 of 7) sorted by relevance

/titanic_50/usr/src/uts/common/inet/sctp/
H A Dsctp_input.c2677 fp->sf_ssthresh = fp->sf_cwnd / 2; in sctp_process_uo_gaps()
2682 fp->sf_cwnd = fp->sf_ssthresh; in sctp_process_uo_gaps()
2934 fp->sf_ssthresh = fp->sf_cwnd / 2; in sctp_got_sack()
2939 fp->sf_cwnd = fp->sf_ssthresh; in sctp_got_sack()
3106 (fp->sf_acked + fp->sf_suna > fp->sf_cwnd - fp->sf_pmss)) { in sctp_got_sack()
3107 if (fp->sf_cwnd < fp->sf_ssthresh) { in sctp_got_sack()
3112 fp->sf_cwnd += fp->sf_pmss; in sctp_got_sack()
3114 fp->sf_cwnd += fp->sf_acked; in sctp_got_sack()
3116 fp->sf_cwnd = MIN(fp->sf_cwnd, in sctp_got_sack()
3123 if (fp->sf_pba >= fp->sf_cwnd) { in sctp_got_sack()
[all …]
H A Dsctp_output.c1088 if (sacklen > 0 && (seglen + extra <= lfp->sf_cwnd - in sctp_output()
1095 pathmax = lfp->sf_cwnd - lfp->sf_suna; in sctp_output()
1140 pathmax = fp->sf_cwnd - fp->sf_suna; in sctp_output()
1830 oldfp->sf_ssthresh = oldfp->sf_cwnd / 2; in sctp_rexmit()
1833 oldfp->sf_cwnd = oldfp->sf_pmss; in sctp_rexmit()
2264 if (fp->sf_cwnd <= fp->sf_rxt_unacked) in sctp_ss_rexmit()
2267 tot_wnd = fp->sf_cwnd - fp->sf_rxt_unacked; in sctp_ss_rexmit()
H A Dsctp_asconf.c897 ofp->sf_ssthresh = ofp->sf_cwnd / 2; in sctp_rc_timer()
900 ofp->sf_cwnd = ofp->sf_pmss; in sctp_rc_timer()
1000 if ((MBLKL(mp) > (fp->sf_cwnd - fp->sf_suna)) || in sctp_wput_asconf()
H A Dsctp_impl.h560 uint32_t sf_cwnd; member
614 (fp)->sf_cwnd = MIN(def_max_init_cwnd * (mss), \
H A Dsctp_opt_data.c100 sp->spinfo_cwnd = fp->sf_cwnd; in sctp_get_status()
178 infop->spinfo_cwnd = fp->sf_cwnd; in sctp_get_paddrinfo()
H A Dsctp_common.c216 if (fp->sf_cwnd < (fp->sf_pmss * 2)) { in sctp_get_dest()
1800 fp->sf_cwnd = sctps->sctps_slow_start_initial * fp->sf_pmss; in sctp_init_faddr()
/titanic_50/usr/src/cmd/mdb/common/modules/sctp/
H A Dsctp.c158 mdb_printf("pmss\t\t%?u\tcwnd\t\t%?u\n", fa->sf_pmss, fa->sf_cwnd); in sctp_faddr()