Home
last modified time | relevance | path

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

/net/dccp/ccids/
Dccid2.c144 hc->tx_rto <<= 1; in ccid2_hc_tx_rto_expire()
145 if (hc->tx_rto > DCCP_RTO_MAX) in ccid2_hc_tx_rto_expire()
146 hc->tx_rto = DCCP_RTO_MAX; in ccid2_hc_tx_rto_expire()
168 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto); in ccid2_hc_tx_rto_expire()
223 cwnd >>= (now - hc->tx_lsndtime) / hc->tx_rto; in ccid2_cwnd_restart()
241 (s32)(now - hc->tx_lsndtime) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
258 if (ccid2_do_cwv && (s32)(now - hc->tx_cwnd_stamp) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
330 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto); in ccid2_hc_tx_packet_sent()
420 hc->tx_rto = (hc->tx_srtt >> 3) + hc->tx_rttvar; in ccid2_rtt_estimator()
422 if (hc->tx_rto > DCCP_RTO_MAX) in ccid2_rtt_estimator()
[all …]
Dccid2.h85 tx_rto; member