summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2024-05-07 13:27:17 +0000
committerJakub Kicinski <kuba@kernel.org>2024-05-08 18:50:11 -0700
commite2d09e5a1e8fb17a807dc4dce8dbc39d9fea3788 (patch)
tree3bdcffc85e18df96748c5a80da609a0d19400317
parent3b09b2bd0d62de1f359b0c130570711c99c5e80b (diff)
downloadlinux-e2d09e5a1e8fb17a807dc4dce8dbc39d9fea3788.tar.gz
linux-e2d09e5a1e8fb17a807dc4dce8dbc39d9fea3788.tar.bz2
linux-e2d09e5a1e8fb17a807dc4dce8dbc39d9fea3788.zip
net: dst_cache: minor optimization in dst_cache_set_ip6()
There is no need to use this_cpu_ptr(dst_cache->cache) twice. Compiler is unable to optimize the second call, because of per-cpu constraints. Signed-off-by: Eric Dumazet <edumazet@google.com> Acked-by: Paolo Abeni <pabeni@redhat.com> Link: https://lore.kernel.org/r/20240507132717.627518-1-edumazet@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--net/core/dst_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dst_cache.c b/net/core/dst_cache.c
index f9df84a6c4b2..6a0482e676d3 100644
--- a/net/core/dst_cache.c
+++ b/net/core/dst_cache.c
@@ -112,7 +112,7 @@ void dst_cache_set_ip6(struct dst_cache *dst_cache, struct dst_entry *dst,
return;
idst = this_cpu_ptr(dst_cache->cache);
- dst_cache_per_cpu_dst_set(this_cpu_ptr(dst_cache->cache), dst,
+ dst_cache_per_cpu_dst_set(idst, dst,
rt6_get_cookie(dst_rt6_info(dst)));
idst->in6_saddr = *saddr;
}