tcp: add tcp_time_stamp_ms() helper
authorEric Dumazet <edumazet@google.com>
Fri, 20 Oct 2023 12:57:38 +0000 (12:57 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 23 Oct 2023 08:35:00 +0000 (09:35 +0100)
In preparation of adding usec TCP TS values, add tcp_time_stamp_ms()
for contexts needing ms based values.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tcp.h
net/ipv4/tcp_input.c
net/ipv4/tcp_timer.c

index d47a57a47b50b4bbc7ff45c76371d39cf6207c54..9fc6dc4ba9e2e2be44318d4495ceb19523395b18 100644 (file)
@@ -804,6 +804,11 @@ static inline u32 tcp_time_stamp(const struct tcp_sock *tp)
        return div_u64(tp->tcp_mstamp, USEC_PER_SEC / TCP_TS_HZ);
 }
 
+static inline u32 tcp_time_stamp_ms(const struct tcp_sock *tp)
+{
+       return div_u64(tp->tcp_mstamp, USEC_PER_MSEC);
+}
+
 /* Convert a nsec timestamp into TCP TSval timestamp (ms based currently) */
 static inline u64 tcp_ns_to_ts(u64 ns)
 {
index ab87f0285b728f3829f1e409833ed4feebd7920e..ffce17545b62c78595c5dd569665a6ebe6a29bbc 100644 (file)
@@ -2856,7 +2856,7 @@ void tcp_enter_recovery(struct sock *sk, bool ece_ack)
 static void tcp_update_rto_time(struct tcp_sock *tp)
 {
        if (tp->rto_stamp) {
-               tp->total_rto_time += tcp_time_stamp(tp) - tp->rto_stamp;
+               tp->total_rto_time += tcp_time_stamp_ms(tp) - tp->rto_stamp;
                tp->rto_stamp = 0;
        }
 }
index 0862b73dd3b5299d2b201e9e93dbef8a0617f75b..63247c78dc13d445c1e1c5cf24e7ffd7a1faa403 100644 (file)
@@ -422,7 +422,7 @@ static void tcp_update_rto_stats(struct sock *sk)
 
        if (!icsk->icsk_retransmits) {
                tp->total_rto_recoveries++;
-               tp->rto_stamp = tcp_time_stamp(tp);
+               tp->rto_stamp = tcp_time_stamp_ms(tp);
        }
        icsk->icsk_retransmits++;
        tp->total_rto++;