summaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2023-09-22 22:03:55 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-11-20 11:58:59 +0100
commit7faa294fa321eacec21836e08ff9fd4f44d90610 (patch)
tree8fed2926dc6d366351d072bf559e76923fef6e83 /net/ipv4
parentce2ef6ec0ad59beeec71dbc6b1ecb3702bf11e09 (diff)
downloadlinux-stable-7faa294fa321eacec21836e08ff9fd4f44d90610.tar.gz
linux-stable-7faa294fa321eacec21836e08ff9fd4f44d90610.tar.bz2
linux-stable-7faa294fa321eacec21836e08ff9fd4f44d90610.zip
tcp_metrics: do not create an entry from tcp_init_metrics()
[ Upstream commit a135798e6e200ecb2f864cecca6d257ba278370c ] tcp_init_metrics() only wants to get metrics if they were previously stored in the cache. Creating an entry is adding useless costs, especially when tcp_no_metrics_save is set. Fixes: 51c5d0c4b169 ("tcp: Maintain dynamic metrics in local cache.") Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: David Ahern <dsahern@kernel.org> Acked-by: Neal Cardwell <ncardwell@google.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_metrics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c
index 0c03f564878f..7aca12c59c18 100644
--- a/net/ipv4/tcp_metrics.c
+++ b/net/ipv4/tcp_metrics.c
@@ -478,7 +478,7 @@ void tcp_init_metrics(struct sock *sk)
goto reset;
rcu_read_lock();
- tm = tcp_get_metrics(sk, dst, true);
+ tm = tcp_get_metrics(sk, dst, false);
if (!tm) {
rcu_read_unlock();
goto reset;