Commit 856540ee3116ac04a49bc06c2f30f54dd3faf7db

Authored by Brian Haley
Committed by David S. Miller
1 parent 246c65add0

IPv6: use ipv6_addr_v4mapped()

Change udp6_portaddr_hash() to use ipv6_addr_v4mapped()
inline instead of ipv6_addr_type().

Signed-off-by: Brian Haley <brian.haley@hp.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -89,7 +89,7 @@
89 89  
90 90 if (ipv6_addr_any(addr6))
91 91 hash = jhash_1word(0, mix);
92   - else if (ipv6_addr_type(addr6) == IPV6_ADDR_MAPPED)
  92 + else if (ipv6_addr_v4mapped(addr6))
93 93 hash = jhash_1word(addr6->s6_addr32[3], mix);
94 94 else
95 95 hash = jhash2(addr6->s6_addr32, 4, mix);