Files
android_kernel_xiaomi_sm8450/net/ipv4
Eric Dumazet efe4208f47 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>
2013-10-09 00:01:25 -04:00
..
2013-10-08 16:27:33 -04:00
2013-09-03 21:41:43 -04:00
2013-10-08 23:19:24 -04:00
2013-10-08 23:19:24 -04:00
2012-10-08 17:42:36 -04:00
2013-09-03 21:41:43 -04:00
2013-10-09 00:01:25 -04:00
2012-01-20 14:17:26 -05:00
2012-05-17 14:59:59 -04:00
2013-10-08 23:19:24 -04:00
2011-03-31 11:26:23 -03:00
2013-03-21 11:47:50 -04:00
2011-03-31 11:26:23 -03:00
2013-10-08 23:19:24 -04:00
2012-03-11 23:42:51 -07:00
2012-04-15 12:37:19 -04:00
2013-05-31 17:19:05 -07:00