Lines Matching refs:t_cwnd
120 uint32_t t_ssthresh, t_cwnd; in sctp_cwnd_update_after_fr() local
125 t_cwnd = 0; in sctp_cwnd_update_after_fr()
131 t_cwnd += net->cwnd; in sctp_cwnd_update_after_fr()
184 if ((net->cwnd > t_cwnd / 2) && in sctp_cwnd_update_after_fr()
185 (net->ssthresh < net->cwnd - t_cwnd / 2)) { in sctp_cwnd_update_after_fr()
186 net->ssthresh = net->cwnd - t_cwnd / 2; in sctp_cwnd_update_after_fr()
769 uint32_t t_ssthresh, t_cwnd, incr; in sctp_cwnd_update_after_sack_common() local
778 t_cwnd = 0; in sctp_cwnd_update_after_sack_common()
788 t_cwnd += net->cwnd; in sctp_cwnd_update_after_sack_common()
1109 uint32_t t_ssthresh, t_cwnd; in sctp_cwnd_update_after_timeout() local
1114 t_cwnd = 0; in sctp_cwnd_update_after_timeout()
1123 t_cwnd += lnet->cwnd; in sctp_cwnd_update_after_timeout()
1150 if (cc_delta < t_cwnd) { in sctp_cwnd_update_after_timeout()
1151 net->ssthresh = (uint32_t)((uint64_t)t_cwnd - cc_delta); in sctp_cwnd_update_after_timeout()
1156 if ((net->cwnd > t_cwnd / 2) && in sctp_cwnd_update_after_timeout()
1157 (net->ssthresh < net->cwnd - t_cwnd / 2)) { in sctp_cwnd_update_after_timeout()
1158 net->ssthresh = net->cwnd - t_cwnd / 2; in sctp_cwnd_update_after_timeout()