mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
Merge branch 'net-introduce-net_aligned_data'
Eric Dumazet says: ==================== net: introduce net_aligned_data ____cacheline_aligned_in_smp on small fields like tcp_memory_allocated and udp_memory_allocated is not good enough. It makes sure to put these fields at the start of a cache line, but does not prevent the linker from using the cache line for other fields, with potential performance impact. nm -v vmlinux|egrep -5 "tcp_memory_allocated|udp_memory_allocated" ... ffffffff83e35cc0 B tcp_memory_allocated ffffffff83e35cc8 b __key.0 ffffffff83e35cc8 b __tcp_tx_delay_enabled.1 ffffffff83e35ce0 b tcp_orphan_timer ... ffffffff849dddc0 B udp_memory_allocated ffffffff849dddc8 B udp_encap_needed_key ffffffff849dddd8 B udpv6_encap_needed_key ffffffff849dddf0 b inetsw_lock One solution is to move these sensitive fields to a structure, so that the compiler is forced to add empty holes between each member. nm -v vmlinux|egrep -2 "tcp_memory_allocated|udp_memory_allocated|net_aligned_data" ffffffff885af970 b mem_id_init ffffffff885af980 b __key.0 ffffffff885af9c0 B net_aligned_data ffffffff885afa80 B page_pool_mem_providers ffffffff885afa90 b __key.2 v1: https://lore.kernel.org/netdev/20250627200551.348096-1-edumazet@google.com/ ==================== Link: https://patch.msgid.link/20250630093540.3052835-1-edumazet@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
8077b9a911
22
include/net/aligned_data.h
Normal file
22
include/net/aligned_data.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/* 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 */
|
||||
|
|
@ -267,7 +267,6 @@ extern long sysctl_tcp_mem[3];
|
|||
#define TCP_RACK_STATIC_REO_WND 0x2 /* Use static RACK reo wnd */
|
||||
#define TCP_RACK_NO_DUPTHRESH 0x4 /* Do not use DUPACK threshold in RACK */
|
||||
|
||||
extern atomic_long_t tcp_memory_allocated;
|
||||
DECLARE_PER_CPU(int, tcp_memory_per_cpu_fw_alloc);
|
||||
|
||||
extern struct percpu_counter tcp_sockets_allocated;
|
||||
|
|
|
|||
|
|
@ -205,7 +205,6 @@ static inline void udp_hash4_dec(struct udp_hslot *hslot2)
|
|||
|
||||
extern struct proto udp_prot;
|
||||
|
||||
extern atomic_long_t udp_memory_allocated;
|
||||
DECLARE_PER_CPU(int, udp_memory_per_cpu_fw_alloc);
|
||||
|
||||
/* sysctl variables for udp */
|
||||
|
|
|
|||
|
|
@ -2,7 +2,9 @@
|
|||
#include <linux/cache.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/list.h>
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/hotdata.h>
|
||||
#include <net/ip.h>
|
||||
#include <net/proto_memory.h>
|
||||
|
||||
struct net_hotdata net_hotdata __cacheline_aligned = {
|
||||
|
|
@ -22,3 +24,6 @@ struct net_hotdata net_hotdata __cacheline_aligned = {
|
|||
.sysctl_mem_pcpu_rsv = SK_MEMORY_PCPU_RESERVE
|
||||
};
|
||||
EXPORT_SYMBOL(net_hotdata);
|
||||
|
||||
struct net_aligned_data net_aligned_data;
|
||||
EXPORT_IPV6_MOD(net_aligned_data);
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@
|
|||
#include <linux/net_namespace.h>
|
||||
#include <linux/sched/task.h>
|
||||
#include <linux/uidgid.h>
|
||||
#include <linux/cookie.h>
|
||||
#include <linux/proc_fs.h>
|
||||
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/sock.h>
|
||||
#include <net/netlink.h>
|
||||
#include <net/net_namespace.h>
|
||||
|
|
@ -64,8 +64,6 @@ DECLARE_RWSEM(pernet_ops_rwsem);
|
|||
|
||||
static unsigned int max_gen_ptrs = INITIAL_NET_GEN_PTRS;
|
||||
|
||||
DEFINE_COOKIE(net_cookie);
|
||||
|
||||
static struct net_generic *net_alloc_generic(void)
|
||||
{
|
||||
unsigned int gen_ptrs = READ_ONCE(max_gen_ptrs);
|
||||
|
|
@ -434,9 +432,7 @@ static __net_init int setup_net(struct net *net)
|
|||
LIST_HEAD(net_exit_list);
|
||||
int error = 0;
|
||||
|
||||
preempt_disable();
|
||||
net->net_cookie = gen_cookie_next(&net_cookie);
|
||||
preempt_enable();
|
||||
net->net_cookie = atomic64_inc_return(&net_aligned_data.net_cookie);
|
||||
|
||||
list_for_each_entry(ops, &pernet_list, list) {
|
||||
error = ops_init(ops, net);
|
||||
|
|
|
|||
|
|
@ -302,8 +302,6 @@ EXPORT_PER_CPU_SYMBOL_GPL(tcp_tw_isn);
|
|||
long sysctl_tcp_mem[3] __read_mostly;
|
||||
EXPORT_IPV6_MOD(sysctl_tcp_mem);
|
||||
|
||||
atomic_long_t tcp_memory_allocated ____cacheline_aligned_in_smp; /* Current allocated memory. */
|
||||
EXPORT_IPV6_MOD(tcp_memory_allocated);
|
||||
DEFINE_PER_CPU(int, tcp_memory_per_cpu_fw_alloc);
|
||||
EXPORT_PER_CPU_SYMBOL_GPL(tcp_memory_per_cpu_fw_alloc);
|
||||
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@
|
|||
#include <linux/slab.h>
|
||||
#include <linux/sched.h>
|
||||
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/net_namespace.h>
|
||||
#include <net/icmp.h>
|
||||
#include <net/inet_hashtables.h>
|
||||
|
|
@ -3390,7 +3391,7 @@ struct proto tcp_prot = {
|
|||
.sockets_allocated = &tcp_sockets_allocated,
|
||||
.orphan_count = &tcp_orphan_count,
|
||||
|
||||
.memory_allocated = &tcp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.tcp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &tcp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.memory_pressure = &tcp_memory_pressure,
|
||||
|
|
|
|||
|
|
@ -127,8 +127,6 @@ struct udp_table udp_table __read_mostly;
|
|||
long sysctl_udp_mem[3] __read_mostly;
|
||||
EXPORT_IPV6_MOD(sysctl_udp_mem);
|
||||
|
||||
atomic_long_t udp_memory_allocated ____cacheline_aligned_in_smp;
|
||||
EXPORT_IPV6_MOD(udp_memory_allocated);
|
||||
DEFINE_PER_CPU(int, udp_memory_per_cpu_fw_alloc);
|
||||
EXPORT_PER_CPU_SYMBOL_GPL(udp_memory_per_cpu_fw_alloc);
|
||||
|
||||
|
|
@ -3235,7 +3233,7 @@ struct proto udp_prot = {
|
|||
#ifdef CONFIG_BPF_SYSCALL
|
||||
.psock_update_sk_prot = udp_bpf_update_proto,
|
||||
#endif
|
||||
.memory_allocated = &udp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.udp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &udp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.sysctl_mem = sysctl_udp_mem,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
#ifndef _UDP4_IMPL_H
|
||||
#define _UDP4_IMPL_H
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/udp.h>
|
||||
#include <net/udplite.h>
|
||||
#include <net/protocol.h>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ struct proto udplite_prot = {
|
|||
.rehash = udp_v4_rehash,
|
||||
.get_port = udp_v4_get_port,
|
||||
|
||||
.memory_allocated = &udp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.udp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &udp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.sysctl_mem = sysctl_udp_mem,
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#include <linux/random.h>
|
||||
#include <linux/indirect_call_wrapper.h>
|
||||
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/tcp.h>
|
||||
#include <net/ndisc.h>
|
||||
#include <net/inet6_hashtables.h>
|
||||
|
|
@ -2356,7 +2357,7 @@ struct proto tcpv6_prot = {
|
|||
.stream_memory_free = tcp_stream_memory_free,
|
||||
.sockets_allocated = &tcp_sockets_allocated,
|
||||
|
||||
.memory_allocated = &tcp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.tcp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &tcp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.memory_pressure = &tcp_memory_pressure,
|
||||
|
|
|
|||
|
|
@ -1925,7 +1925,7 @@ struct proto udpv6_prot = {
|
|||
.psock_update_sk_prot = udp_bpf_update_proto,
|
||||
#endif
|
||||
|
||||
.memory_allocated = &udp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.udp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &udp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.sysctl_mem = sysctl_udp_mem,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
#ifndef _UDP6_IMPL_H
|
||||
#define _UDP6_IMPL_H
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/udp.h>
|
||||
#include <net/udplite.h>
|
||||
#include <net/protocol.h>
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ struct proto udplitev6_prot = {
|
|||
.rehash = udp_v6_rehash,
|
||||
.get_port = udp_v6_get_port,
|
||||
|
||||
.memory_allocated = &udp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.udp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &udp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.sysctl_mem = sysctl_udp_mem,
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
#include <linux/netdevice.h>
|
||||
#include <linux/sched/signal.h>
|
||||
#include <linux/atomic.h>
|
||||
#include <net/aligned_data.h>
|
||||
#include <net/sock.h>
|
||||
#include <net/inet_common.h>
|
||||
#include <net/inet_hashtables.h>
|
||||
|
|
@ -3729,7 +3730,7 @@ static struct proto mptcp_prot = {
|
|||
.stream_memory_free = mptcp_stream_memory_free,
|
||||
.sockets_allocated = &mptcp_sockets_allocated,
|
||||
|
||||
.memory_allocated = &tcp_memory_allocated,
|
||||
.memory_allocated = &net_aligned_data.tcp_memory_allocated,
|
||||
.per_cpu_fw_alloc = &tcp_memory_per_cpu_fw_alloc,
|
||||
|
||||
.memory_pressure = &tcp_memory_pressure,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user