Re: [PATCH net 1/2] tcp_metrics: set maximum cwnd from the dst entry
From: Paolo Abeni
Date: Tue Jun 17 2025 - 07:01:16 EST
On 6/13/25 12:20 PM, Petr Tesarik wrote:
> diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c
> index 4251670e328c8..dd8f3457bd72e 100644
> --- a/net/ipv4/tcp_metrics.c
> +++ b/net/ipv4/tcp_metrics.c
> @@ -477,6 +477,9 @@ void tcp_init_metrics(struct sock *sk)
> if (!dst)
> goto reset;
>
> + if (dst_metric_locked(dst, RTAX_CWND))
> + tp->snd_cwnd_clamp = dst_metric(dst, RTAX_CWND);
> +
> rcu_read_lock();
> tm = tcp_get_metrics(sk, dst, false);
> if (!tm) {
> @@ -484,9 +487,6 @@ void tcp_init_metrics(struct sock *sk)
> goto reset;
> }
>
> - if (tcp_metric_locked(tm, TCP_METRIC_CWND))
> - tp->snd_cwnd_clamp = tcp_metric_get(tm, TCP_METRIC_CWND);
> -
> val = READ_ONCE(net->ipv4.sysctl_tcp_no_ssthresh_metrics_save) ?
> 0 : tcp_metric_get(tm, TCP_METRIC_SSTHRESH);
> if (val) {
It's unclear to me why you drop the tcp_metric_get() here. It looks like
the above will cause a functional regression, with unlocked cached
metrics no longer taking effects?
/P