Skip to content

Commit

Permalink
rxrpc: Generate rtt_min
Browse files Browse the repository at this point in the history
Generate rtt_min as this is required by RACK-TLP.

Signed-off-by: David Howells <[email protected]>
cc: Marc Dionne <[email protected]>
cc: [email protected]
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
dhowells authored and kuba-moo committed Dec 9, 2024
1 parent 7903d44 commit c637bd0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
1 change: 1 addition & 0 deletions lib/win_minmax.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,4 @@ u32 minmax_running_min(struct minmax *m, u32 win, u32 t, u32 meas)

return minmax_subwin_update(m, win, &val);
}
EXPORT_SYMBOL(minmax_running_min);
2 changes: 2 additions & 0 deletions net/rxrpc/ar-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,8 @@ struct rxrpc_peer {
spinlock_t rtt_input_lock; /* RTT lock for input routine */
ktime_t rtt_last_req; /* Time of last RTT request */
unsigned int rtt_count; /* Number of samples we've got */
unsigned int rtt_taken; /* Number of samples taken (wrapping) */
struct minmax min_rtt; /* Estimated minimum RTT */

u32 srtt_us; /* smoothed round trip time << 3 in usecs */
u32 mdev_us; /* medium deviation */
Expand Down
20 changes: 16 additions & 4 deletions net/rxrpc/rtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,16 +127,27 @@ static void rxrpc_set_rto(struct rxrpc_peer *peer)
peer->rto_us = rxrpc_bound_rto(rto);
}

static void rxrpc_ack_update_rtt(struct rxrpc_peer *peer, long rtt_us)
static void rxrpc_update_rtt_min(struct rxrpc_peer *peer, ktime_t resp_time, long rtt_us)
{
/* Window size 5mins in approx usec (ipv4.sysctl_tcp_min_rtt_wlen) */
u32 wlen_us = 5ULL * NSEC_PER_SEC / 1024;

minmax_running_min(&peer->min_rtt, wlen_us, resp_time / 1024,
(u32)rtt_us ? : jiffies_to_usecs(1));
}

static void rxrpc_ack_update_rtt(struct rxrpc_peer *peer, ktime_t resp_time, long rtt_us)
{
if (rtt_us < 0)
return;

//rxrpc_update_rtt_min(peer, rtt_us);
/* Update RACK min RTT [RFC8985 6.1 Step 1]. */
rxrpc_update_rtt_min(peer, resp_time, rtt_us);

rxrpc_rtt_estimator(peer, rtt_us);
rxrpc_set_rto(peer);

/* RFC6298: only reset backoff on valid RTT measurement. */
/* Only reset backoff on valid RTT measurement [RFC6298]. */
peer->backoff = 0;
}

Expand All @@ -157,9 +168,10 @@ void rxrpc_peer_add_rtt(struct rxrpc_call *call, enum rxrpc_rtt_rx_trace why,
return;

spin_lock(&peer->rtt_input_lock);
rxrpc_ack_update_rtt(peer, rtt_us);
rxrpc_ack_update_rtt(peer, resp_time, rtt_us);
if (peer->rtt_count < 3)
peer->rtt_count++;
peer->rtt_taken++;
spin_unlock(&peer->rtt_input_lock);

trace_rxrpc_rtt_rx(call, why, rtt_slot, send_serial, resp_serial,
Expand Down

0 comments on commit c637bd0

Please sign in to comment.