Home
last modified time | relevance | path

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

/openbmc/linux/net/ipv4/
H A Dtcp_timer.c184 unsigned int linear_backoff_thresh, timeout; in tcp_model_timeout() local
186 linear_backoff_thresh = ilog2(TCP_RTO_MAX / rto_base); in tcp_model_timeout()
187 if (boundary <= linear_backoff_thresh) in tcp_model_timeout()
190 timeout = ((2 << linear_backoff_thresh) - 1) * rto_base + in tcp_model_timeout()
191 (boundary - linear_backoff_thresh) * TCP_RTO_MAX; in tcp_model_timeout()