Home
last modified time | relevance | path

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

/Linux-v5.10/net/dccp/ccids/
Dccid2.c145 hc->tx_rto <<= 1; in ccid2_hc_tx_rto_expire()
146 if (hc->tx_rto > DCCP_RTO_MAX) in ccid2_hc_tx_rto_expire()
147 hc->tx_rto = DCCP_RTO_MAX; in ccid2_hc_tx_rto_expire()
169 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto); in ccid2_hc_tx_rto_expire()
226 while ((delta -= hc->tx_rto) >= 0 && cwnd > restart_cwnd) in ccid2_cwnd_restart()
244 (s32)(now - hc->tx_lsndtime) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
261 if (ccid2_do_cwv && (s32)(now - hc->tx_cwnd_stamp) >= hc->tx_rto) in ccid2_hc_tx_packet_sent()
333 sk_reset_timer(sk, &hc->tx_rtotimer, jiffies + hc->tx_rto); in ccid2_hc_tx_packet_sent()
423 hc->tx_rto = (hc->tx_srtt >> 3) + hc->tx_rttvar; in ccid2_rtt_estimator()
425 if (hc->tx_rto > DCCP_RTO_MAX) in ccid2_rtt_estimator()
[all …]
Dccid2.h72 tx_rto; member