diff options
Diffstat (limited to 'net/ipv4/tcp_illinois.c')
-rw-r--r-- | net/ipv4/tcp_illinois.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_illinois.c b/net/ipv4/tcp_illinois.c index 8e3165917f72..4adc47c55351 100644 --- a/net/ipv4/tcp_illinois.c +++ b/net/ipv4/tcp_illinois.c | |||
@@ -90,7 +90,7 @@ static void tcp_illinois_acked(struct sock *sk, u32 pkts_acked, ktime_t last) | |||
90 | 90 | ||
91 | ca->acked = pkts_acked; | 91 | ca->acked = pkts_acked; |
92 | 92 | ||
93 | rtt = ktime_to_ns(net_timedelta(last)) / NSEC_PER_USEC; | 93 | rtt = ktime_to_us(net_timedelta(last)); |
94 | 94 | ||
95 | /* ignore bogus values, this prevents wraparound in alpha math */ | 95 | /* ignore bogus values, this prevents wraparound in alpha math */ |
96 | if (rtt > RTT_MAX) | 96 | if (rtt > RTT_MAX) |