diff options
author | Eric Dumazet <edumazet@google.com> | 2013-10-03 18:42:29 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-09 00:01:25 -0400 |
commit | efe4208f47f907b86f528788da711e8ab9dea44d (patch) | |
tree | 8246b487be087877ba26d166f629d8c53d553ec1 /net/ipv4/tcp_metrics.c | |
parent | 05dbc7b59481ca891bbcfe6799a562d48159fbf7 (diff) |
ipv6: make lookups simpler and faster
TCP listener refactoring, part 4 :
To speed up inet lookups, we moved IPv4 addresses from inet to struct
sock_common
Now is time to do the same for IPv6, because it permits us to have fast
lookups for all kind of sockets, including upcoming SYN_RECV.
Getting IPv6 addresses in TCP lookups currently requires two extra cache
lines, plus a dereference (and memory stall).
inet6_sk(sk) does the dereference of inet_sk(__sk)->pinet6
This patch is way bigger than its IPv4 counter part, because for IPv4,
we could add aliases (inet_daddr, inet_rcv_saddr), while on IPv6,
it's not doable easily.
inet6_sk(sk)->daddr becomes sk->sk_v6_daddr
inet6_sk(sk)->rcv_saddr becomes sk->sk_v6_rcv_saddr
And timewait socket also have tw->tw_v6_daddr & tw->tw_v6_rcv_saddr
at the same offset.
We get rid of INET6_TW_MATCH() as INET6_MATCH() is now the generic
macro.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_metrics.c')
-rw-r--r-- | net/ipv4/tcp_metrics.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c index 52f3c6b971d2..27535fd5ea10 100644 --- a/net/ipv4/tcp_metrics.c +++ b/net/ipv4/tcp_metrics.c | |||
@@ -240,7 +240,6 @@ static struct tcp_metrics_block *__tcp_get_metrics_req(struct request_sock *req, | |||
240 | 240 | ||
241 | static struct tcp_metrics_block *__tcp_get_metrics_tw(struct inet_timewait_sock *tw) | 241 | static struct tcp_metrics_block *__tcp_get_metrics_tw(struct inet_timewait_sock *tw) |
242 | { | 242 | { |
243 | struct inet6_timewait_sock *tw6; | ||
244 | struct tcp_metrics_block *tm; | 243 | struct tcp_metrics_block *tm; |
245 | struct inetpeer_addr addr; | 244 | struct inetpeer_addr addr; |
246 | unsigned int hash; | 245 | unsigned int hash; |
@@ -253,9 +252,8 @@ static struct tcp_metrics_block *__tcp_get_metrics_tw(struct inet_timewait_sock | |||
253 | hash = (__force unsigned int) addr.addr.a4; | 252 | hash = (__force unsigned int) addr.addr.a4; |
254 | break; | 253 | break; |
255 | case AF_INET6: | 254 | case AF_INET6: |
256 | tw6 = inet6_twsk((struct sock *)tw); | 255 | *(struct in6_addr *)addr.addr.a6 = tw->tw_v6_daddr; |
257 | *(struct in6_addr *)addr.addr.a6 = tw6->tw_v6_daddr; | 256 | hash = ipv6_addr_hash(&tw->tw_v6_daddr); |
258 | hash = ipv6_addr_hash(&tw6->tw_v6_daddr); | ||
259 | break; | 257 | break; |
260 | default: | 258 | default: |
261 | return NULL; | 259 | return NULL; |
@@ -289,8 +287,8 @@ static struct tcp_metrics_block *tcp_get_metrics(struct sock *sk, | |||
289 | hash = (__force unsigned int) addr.addr.a4; | 287 | hash = (__force unsigned int) addr.addr.a4; |
290 | break; | 288 | break; |
291 | case AF_INET6: | 289 | case AF_INET6: |
292 | *(struct in6_addr *)addr.addr.a6 = inet6_sk(sk)->daddr; | 290 | *(struct in6_addr *)addr.addr.a6 = sk->sk_v6_daddr; |
293 | hash = ipv6_addr_hash(&inet6_sk(sk)->daddr); | 291 | hash = ipv6_addr_hash(&sk->sk_v6_daddr); |
294 | break; | 292 | break; |
295 | default: | 293 | default: |
296 | return NULL; | 294 | return NULL; |