aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_veno.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/tcp_veno.c')
-rw-r--r--net/ipv4/tcp_veno.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_veno.c b/net/ipv4/tcp_veno.c
index 0b50d0607a0e..9edb340f2f95 100644
--- a/net/ipv4/tcp_veno.c
+++ b/net/ipv4/tcp_veno.c
@@ -75,7 +75,7 @@ static void tcp_veno_pkts_acked(struct sock *sk, u32 cnt, ktime_t last)
75 u32 vrtt; 75 u32 vrtt;
76 76
77 /* Never allow zero rtt or baseRTT */ 77 /* Never allow zero rtt or baseRTT */
78 vrtt = (ktime_to_ns(net_timedelta(last)) / NSEC_PER_USEC) + 1; 78 vrtt = ktime_to_us(net_timedelta(last)) + 1;
79 79
80 /* Filter to find propagation delay: */ 80 /* Filter to find propagation delay: */
81 if (vrtt < veno->basertt) 81 if (vrtt < veno->basertt)