summaryrefslogtreecommitdiffstats
path: root/cddl
diff options
context:
space:
mode:
authormarkj <markj@FreeBSD.org>2014-10-21 05:19:08 +0000
committermarkj <markj@FreeBSD.org>2014-10-21 05:19:08 +0000
commit78d7824866f39c18fed915795deed451f98af260 (patch)
treed655a2b250164241d8c1074fa911d2cc23bfc270 /cddl
parent1fcec0dcef40279dcc6c2ded06309b24e16f263a (diff)
downloadFreeBSD-src-78d7824866f39c18fed915795deed451f98af260.zip
FreeBSD-src-78d7824866f39c18fed915795deed451f98af260.tar.gz
Correct the calculation of tcps_rto in the struct tcpcb -> tcpsinfo_t
translator. Submitted by: Grenville Armitage <garmitage@swin.edu.au> MFC after: 1 week
Diffstat (limited to 'cddl')
-rw-r--r--cddl/lib/libdtrace/tcp.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/lib/libdtrace/tcp.d b/cddl/lib/libdtrace/tcp.d
index bf687a2..4b826f1 100644
--- a/cddl/lib/libdtrace/tcp.d
+++ b/cddl/lib/libdtrace/tcp.d
@@ -198,7 +198,7 @@ translator tcpsinfo_t < struct tcpcb *p > {
tcps_cwnd_ssthresh = p == NULL ? -1 : p->snd_ssthresh;
tcps_sack_fack = p == NULL ? 0 : p->snd_fack;
tcps_sack_snxt = p == NULL ? 0 : p->sack_newdata;
- tcps_rto = p == NULL ? -1 : p->t_rxtcur / 1000; /* XXX */
+ tcps_rto = p == NULL ? -1 : (p->t_rxtcur * 1000) / `hz;
tcps_mss = p == NULL ? -1 : p->t_maxseg;
tcps_retransmit = p == NULL ? -1 : p->t_rxtshift > 0 ? 1 : 0;
tcps_srtt = p == NULL ? -1 : p->t_srtt; /* smoothed RTT in units of (TCP_RTT_SCALE*hz) */
OpenPOWER on IntegriCloud