diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2007-03-27 16:58:31 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:28:19 -0400 |
commit | 4103f8cd5c1f260d674a7b426ed221812de54d47 (patch) | |
tree | 28649757907dd77b53a8c16533c963c43fea4be0 /net/ipv4/tcp_ipv4.c | |
parent | 73417f617a93cf30342c3ea41abc38927bd467aa (diff) |
[TCP]: tcp_memory_pressure and tcp_socket are__read_mostly candidates
tcp_memory_pressure and tcp_socket currently share a cache line with tcp_memory_allocated, tcp_sockets_allocated.
(Very hot cache line)
It makes sense to declare these variables as __read_mostly, to avoid false sharing on SMP.
ffffffff8081d9c0 B tcp_orphan_count
ffffffff8081d9c4 B tcp_memory_allocated
ffffffff8081d9c8 B tcp_sockets_allocated
ffffffff8081d9cc B tcp_memory_pressure
ffffffff8081d9d0 b tcp_md5sig_users
ffffffff8081d9d8 b tcp_md5sig_pool
ffffffff8081d9e0 b warntime.31570
ffffffff8081d9e8 b tcp_socket
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 617a5e4ca010..e11eaf4cc269 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -88,7 +88,7 @@ int sysctl_tcp_low_latency __read_mostly; | |||
88 | #define ICMP_MIN_LENGTH 8 | 88 | #define ICMP_MIN_LENGTH 8 |
89 | 89 | ||
90 | /* Socket used for sending RSTs */ | 90 | /* Socket used for sending RSTs */ |
91 | static struct socket *tcp_socket; | 91 | static struct socket *tcp_socket __read_mostly; |
92 | 92 | ||
93 | void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb); | 93 | void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb); |
94 | 94 | ||