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

/asus-wl-520gu-7.0.1.45/src/linux/linux/net/sunrpc/
H A Dtimer.c22 rt->srtt[i] = t;
31 long *srtt, *sdrtt; local
38 srtt = &rt->srtt[timer];
39 m -= *srtt >> 3;
40 *srtt += m;
70 res = (rt->srtt[timer] >> 3) + rt->sdrtt[timer];
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/sunrpc/
H A Dtimer.h16 long srtt[5]; /* smoothed round trip time << 3 */ member in struct:rpc_rtt
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/sunrpc/
H A Dtimer.h16 long srtt[5]; /* smoothed round trip time << 3 */ member in struct:rpc_rtt
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/decnet/
H A Ddn_nsp_out.c193 long srtt = (long)scp->nsp_srtt; local
207 delta = ((rtt << 3) - srtt);
208 srtt += (delta >> 3);
209 if (srtt >= 1)
210 scp->nsp_srtt = (unsigned long)srtt;
224 /* printk(KERN_DEBUG "srtt=%lu rttvar=%lu\n", scp->nsp_srtt, scp->nsp_rttvar); */
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dtcp_input.c435 if (tp->srtt != 0) {
436 m -= (tp->srtt >> 3); /* m is now error in rtt est */
437 tp->srtt += m; /* rtt = 7/8 rtt + 1/8 new */
468 tp->srtt = m<<3; /* take the measured time to be rtt */
490 tp->rto = (tp->srtt >> 3) + tp->rttvar;
522 if (tp->backoff || !tp->srtt) {
532 m = dst->rtt - tp->srtt;
540 dst->rtt = tp->srtt;
610 if (!tp->srtt || (tp->snd_ssthresh >= 0xFFFF && tp->srtt > ((H
[all...]
H A Dtcp_diag.c181 info->tcpi_rtt = ((1000000*tp->srtt)/HZ)>>3;
H A Dtcp_output.c1271 if (tp->srtt) {
1272 int rtt = max(tp->srtt>>3, TCP_DELACK_MIN);
H A Dtcp.c2114 tp->srtt = 0;
2498 info.tcpi_rtt = ((1000000*tp->srtt)/HZ)>>3;
H A Dtcp_minisocks.c699 newtp->srtt = 0;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dsock.h308 __u32 srtt; /* smothed round trip time << 3 */ member in struct:tcp_opt
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dsock.h360 __u32 srtt; /* smothed round trip time << 3 */ member in struct:tcp_opt

Completed in 84 milliseconds