diff options
author | Eric Dumazet <edumazet@google.com> | 2014-06-27 11:36:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-02 02:46:21 -0400 |
commit | 9fe516ba3fb29b6f6a752ffd93342fdee500ec01 (patch) | |
tree | 4254ea02ed5d51d92fd7109d33d28bc95b8d3fb1 /net/ipv4 | |
parent | 090cce42639c2c82bce2cc26a902e4c674c62882 (diff) |
inet: move ipv6only in sock_common
When an UDP application switches from AF_INET to AF_INET6 sockets, we
have a small performance degradation for IPv4 communications because of
extra cache line misses to access ipv6only information.
This can also be noticed for TCP listeners, as ipv6_only_sock() is also
used from __inet_lookup_listener()->compute_score()
This is magnified when SO_REUSEPORT is used.
Move ipv6only into struct sock_common so that it is available at
no extra cost in lookups.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp_minisocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index e68e0d4af6c9..1649988bd1b6 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c | |||
@@ -298,7 +298,7 @@ void tcp_time_wait(struct sock *sk, int state, int timeo) | |||
298 | tw->tw_v6_rcv_saddr = sk->sk_v6_rcv_saddr; | 298 | tw->tw_v6_rcv_saddr = sk->sk_v6_rcv_saddr; |
299 | tw->tw_tclass = np->tclass; | 299 | tw->tw_tclass = np->tclass; |
300 | tw->tw_flowlabel = np->flow_label >> 12; | 300 | tw->tw_flowlabel = np->flow_label >> 12; |
301 | tw->tw_ipv6only = np->ipv6only; | 301 | tw->tw_ipv6only = sk->sk_ipv6only; |
302 | } | 302 | } |
303 | #endif | 303 | #endif |
304 | 304 | ||