diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-09 17:30:26 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-10 16:22:28 -0500 |
commit | 7a71ed899e77cc822abb863e24a422dcf7e9fa33 (patch) | |
tree | 2811b8ca75c7019522f73c7d972208ae3a3ea8f9 /net/ipv6 | |
parent | b6644cb706610874104dbf3359e3b67aa59cbc27 (diff) |
inetpeer: Abstract address representation further.
Future changes will add caching information, and some of
these new elements will be addresses.
Since the family is implicit via the ->daddr.family member,
replicating the family in ever address we store is entirely
redundant.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 20aa95e37359..d6954e318324 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1323,7 +1323,7 @@ static int tcp_v6_conn_request(struct sock *sk, struct sk_buff *skb) | |||
1323 | tcp_death_row.sysctl_tw_recycle && | 1323 | tcp_death_row.sysctl_tw_recycle && |
1324 | (dst = inet6_csk_route_req(sk, req)) != NULL && | 1324 | (dst = inet6_csk_route_req(sk, req)) != NULL && |
1325 | (peer = rt6_get_peer((struct rt6_info *)dst)) != NULL && | 1325 | (peer = rt6_get_peer((struct rt6_info *)dst)) != NULL && |
1326 | ipv6_addr_equal((struct in6_addr *)peer->daddr.a6, | 1326 | ipv6_addr_equal((struct in6_addr *)peer->daddr.addr.a6, |
1327 | &treq->rmt_addr)) { | 1327 | &treq->rmt_addr)) { |
1328 | inet_peer_refcheck(peer); | 1328 | inet_peer_refcheck(peer); |
1329 | if ((u32)get_seconds() - peer->tcp_ts_stamp < TCP_PAWS_MSL && | 1329 | if ((u32)get_seconds() - peer->tcp_ts_stamp < TCP_PAWS_MSL && |