diff options
author | Eric Dumazet <edumazet@google.com> | 2024-05-07 13:20:00 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-05-08 18:49:51 -0700 |
commit | 3b09b2bd0d62de1f359b0c130570711c99c5e80b (patch) | |
tree | 837ac235d524bf12bbf53e270e0f546f907e637f /net/core | |
parent | e497c3228a4e09cdc956f19200ee1d9e84b63f96 (diff) |
net: dst_cache: annotate data-races around dst_cache->reset_ts
dst_cache->reset_ts is read or written locklessly,
add READ_ONCE() and WRITE_ONCE() annotations.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/r/20240507132000.614591-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dst_cache.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/dst_cache.c b/net/core/dst_cache.c index 0c0bdb058c5b..f9df84a6c4b2 100644 --- a/net/core/dst_cache.c +++ b/net/core/dst_cache.c @@ -47,7 +47,8 @@ static struct dst_entry *dst_cache_per_cpu_get(struct dst_cache *dst_cache, /* the cache already hold a dst reference; it can't go away */ dst_hold(dst); - if (unlikely(!time_after(idst->refresh_ts, dst_cache->reset_ts) || + if (unlikely(!time_after(idst->refresh_ts, + READ_ONCE(dst_cache->reset_ts)) || (dst->obsolete && !dst->ops->check(dst, idst->cookie)))) { dst_cache_per_cpu_dst_set(idst, NULL, 0); dst_release(dst); @@ -170,7 +171,7 @@ void dst_cache_reset_now(struct dst_cache *dst_cache) if (!dst_cache->cache) return; - dst_cache->reset_ts = jiffies; + dst_cache_reset(dst_cache); for_each_possible_cpu(i) { struct dst_cache_pcpu *idst = per_cpu_ptr(dst_cache->cache, i); struct dst_entry *dst = idst->dst; |