mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

____cacheline_aligned_in_smp attribute only makes sure to align a field to a cache line. It does not prevent the linker to use the remaining of the cache line for other variables, causing potential false sharing. Signed-off-by: Eric Dumazet <edumazet@google.com> Reviewed-by: Willem de Bruijn <willemb@google.com> Link: https://patch.msgid.link/20250630093540.3052835-5-edumazet@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
22 lines
682 B
C
22 lines
682 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef _NET_ALIGNED_DATA_H
|
|
#define _NET_ALIGNED_DATA_H
|
|
|
|
#include <linux/atomic.h>
|
|
#include <linux/types.h>
|
|
|
|
/* Structure holding cacheline aligned fields on SMP builds.
|
|
* Each field or group should have an ____cacheline_aligned_in_smp
|
|
* attribute to ensure no accidental false sharing can happen.
|
|
*/
|
|
struct net_aligned_data {
|
|
atomic64_t net_cookie ____cacheline_aligned_in_smp;
|
|
#if defined(CONFIG_INET)
|
|
atomic_long_t tcp_memory_allocated ____cacheline_aligned_in_smp;
|
|
atomic_long_t udp_memory_allocated ____cacheline_aligned_in_smp;
|
|
#endif
|
|
};
|
|
|
|
extern struct net_aligned_data net_aligned_data;
|
|
|
|
#endif /* _NET_ALIGNED_DATA_H */
|