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

/linux-master/net/ipv4/
H A Dtcp_timer.c194 unsigned int linear_backoff_thresh, timeout; local
196 linear_backoff_thresh = ilog2(TCP_RTO_MAX / rto_base);
197 if (boundary <= linear_backoff_thresh)
200 timeout = ((2 << linear_backoff_thresh) - 1) * rto_base +
201 (boundary - linear_backoff_thresh) * TCP_RTO_MAX;

Completed in 159 milliseconds