diff options
author | Eric Dumazet | 2021-11-15 09:11:49 -0800 |
---|---|---|
committer | David S. Miller | 2021-11-16 13:20:45 +0000 |
commit | 4199bae10c49e24bc2c5d8c06a68820d56640000 (patch) | |
tree | b2961c173f6371d1e6c6025c8dc8d7cee442dc7f /include/net/netns | |
parent | d477eb9004845cb2dc92ad5eed79a437738a868a (diff) |
net: merge net->core.prot_inuse and net->core.sock_inuse
net->core.sock_inuse is a per cpu variable (int),
while net->core.prot_inuse is another per cpu variable
of 64 integers.
per cpu allocator tend to place them in very different places.
Grouping them together makes sense, since it makes
updates potentially faster, if hitting the same
cache line.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/core.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/net/netns/core.h b/include/net/netns/core.h index 36c2d998a43c..552bc25b1933 100644 --- a/include/net/netns/core.h +++ b/include/net/netns/core.h @@ -12,7 +12,6 @@ struct netns_core { int sysctl_somaxconn; #ifdef CONFIG_PROC_FS - int __percpu *sock_inuse; struct prot_inuse __percpu *prot_inuse; #endif }; |