Home
last modified time | relevance | path

Searched refs:tx_cwnd (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/net/dccp/ccids/
Dccid2.c88 u32 max_ratio = DIV_ROUND_UP(ccid2_hc_tx_sk(sk)->tx_cwnd, 2); in ccid2_change_l_ack_ratio()
118 if (dccp_feat_nn_get(sk, DCCPF_ACK_RATIO) > hc->tx_cwnd) in ccid2_check_l_ack_ratio()
119 ccid2_change_l_ack_ratio(sk, hc->tx_cwnd/2 ? : 1U); in ccid2_check_l_ack_ratio()
149 hc->tx_ssthresh = hc->tx_cwnd / 2; in ccid2_hc_tx_rto_expire()
152 hc->tx_cwnd = 1; in ccid2_hc_tx_rto_expire()
201 if (win_used < hc->tx_cwnd) { in ccid2_cwnd_application_limited()
203 (hc->tx_cwnd >> 1) + (hc->tx_cwnd >> 2)); in ccid2_cwnd_application_limited()
204 hc->tx_cwnd = (hc->tx_cwnd + win_used) >> 1; in ccid2_cwnd_application_limited()
216 u32 cwnd = hc->tx_cwnd, restart_cwnd, in ccid2_cwnd_restart()
224 hc->tx_cwnd = max(cwnd, restart_cwnd); in ccid2_cwnd_restart()
[all …]
Dccid2.h71 u32 tx_cwnd; member
104 return hc->tx_pipe >= hc->tx_cwnd; in ccid2_cwnd_network_limited()