[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4AF89EE9.1090109@gmail.com>
Date: Mon, 09 Nov 2009 23:59:53 +0100
From: Eric Dumazet <eric.dumazet@...il.com>
To: Brian Haley <brian.haley@...com>
CC: David Miller <davem@...emloft.net>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: Re: [PATCH] IPv6: use ipv6_addr_v4mapped()
Brian Haley a écrit :
> Change udp6_portaddr_hash() to use ipv6_addr_v4mapped()
> inline instead of ipv6_addr_type().
>
> Signed-off-by: Brian Haley <brian.haley@...com>
> ---
>
> diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
> index 2915e1d..0ed1637 100644
> --- a/net/ipv6/udp.c
> +++ b/net/ipv6/udp.c
> @@ -89,7 +89,7 @@ static unsigned int udp6_portaddr_hash(struct net *net,
>
> if (ipv6_addr_any(addr6))
> hash = jhash_1word(0, mix);
> - else if (ipv6_addr_type(addr6) == IPV6_ADDR_MAPPED)
> + else if (ipv6_addr_v4mapped(addr6))
> hash = jhash_1word(addr6->s6_addr32[3], mix);
> else
> hash = jhash2(addr6->s6_addr32, 4, mix);
Indeed, its a bit faster ;)
Acked-by: Eric Dumazet <eric.dumazet@...il.com>
Thanks Brian
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists