summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2025-06-30 12:35:37 +0300
committerJakub Kicinski <kuba@kernel.org>2025-07-03 00:22:02 +0300
commit3715b5df09b92168a4492b48bb7ea70d89f9d8f3 (patch)
tree3b03ae2ada9db1a77bfa689549453cdc1d882bef /include
parenta8065af3346ebd7c76ebc113451fb3ba94cf7769 (diff)
downloadlinux-3715b5df09b92168a4492b48bb7ea70d89f9d8f3.tar.xz
net: add struct net_aligned_data
This structure will hold networking data that must consume a full cache line to avoid accidental 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-2-edumazet@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/net/aligned_data.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/net/aligned_data.h b/include/net/aligned_data.h
new file mode 100644
index 000000000000..cf3329d7c227
--- /dev/null
+++ b/include/net/aligned_data.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+#ifndef _NET_ALIGNED_DATA_H
+#define _NET_ALIGNED_DATA_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 {
+};
+
+extern struct net_aligned_data net_aligned_data;
+
+#endif /* _NET_ALIGNED_DATA_H */