diff options
author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2009-10-10 23:44:45 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-12 02:41:08 -0400 |
commit | e7db38c38fe8df1d890ae772737e27308bdc5956 (patch) | |
tree | f9af81ca780ad29207c38728dba27883b36bb1d5 /net | |
parent | e0c93948154328e13b4c0b0502d66af93f0fdfc4 (diff) |
ipv6 sit: Fix 6rd relay address.
ipv6 sit: Fix 6rd relay address.
Relay's address should be extracted from real IPv6 address
instead of configured prefix.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/sit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 8594451c747b..193d0c6c5ce2 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c | |||
@@ -569,12 +569,12 @@ __be32 try_6rd(struct in6_addr *v6dst, struct ip_tunnel *tunnel) | |||
569 | pbw0 = tunnel->ip6rd.prefixlen >> 5; | 569 | pbw0 = tunnel->ip6rd.prefixlen >> 5; |
570 | pbi0 = tunnel->ip6rd.prefixlen & 0x1f; | 570 | pbi0 = tunnel->ip6rd.prefixlen & 0x1f; |
571 | 571 | ||
572 | d = (ntohl(tunnel->ip6rd.prefix.s6_addr32[pbw0]) << pbi0) >> | 572 | d = (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >> |
573 | tunnel->ip6rd.relay_prefixlen; | 573 | tunnel->ip6rd.relay_prefixlen; |
574 | 574 | ||
575 | pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen; | 575 | pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen; |
576 | if (pbi1 > 0) | 576 | if (pbi1 > 0) |
577 | d |= ntohl(tunnel->ip6rd.prefix.s6_addr32[pbw0 + 1]) >> | 577 | d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >> |
578 | (32 - pbi1); | 578 | (32 - pbi1); |
579 | 579 | ||
580 | dst = tunnel->ip6rd.relay_prefix | htonl(d); | 580 | dst = tunnel->ip6rd.relay_prefix | htonl(d); |