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 /security | |
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 'security')
-rw-r--r-- | security/lsm_audit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/lsm_audit.c b/security/lsm_audit.c index 8d8d97dbb389..80554fcf9fcc 100644 --- a/security/lsm_audit.c +++ b/security/lsm_audit.c | |||
@@ -304,12 +304,11 @@ static void dump_common_audit_data(struct audit_buffer *ab, | |||
304 | } | 304 | } |
305 | case AF_INET6: { | 305 | case AF_INET6: { |
306 | struct inet_sock *inet = inet_sk(sk); | 306 | struct inet_sock *inet = inet_sk(sk); |
307 | struct ipv6_pinfo *inet6 = inet6_sk(sk); | ||
308 | 307 | ||
309 | print_ipv6_addr(ab, &inet6->rcv_saddr, | 308 | print_ipv6_addr(ab, &sk->sk_v6_rcv_saddr, |
310 | inet->inet_sport, | 309 | inet->inet_sport, |
311 | "laddr", "lport"); | 310 | "laddr", "lport"); |
312 | print_ipv6_addr(ab, &inet6->daddr, | 311 | print_ipv6_addr(ab, &sk->sk_v6_daddr, |
313 | inet->inet_dport, | 312 | inet->inet_dport, |
314 | "faddr", "fport"); | 313 | "faddr", "fport"); |
315 | break; | 314 | break; |