Skip to content

Commit

Permalink
ipv6: optimize inet6_hash_frag()
Browse files Browse the repository at this point in the history
Use ipv6_addr_hash() and a single jhash invocation.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Feb 18, 2013
1 parent c8c5b28 commit 279e9f2
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions net/ipv6/reassembly.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,7 @@ unsigned int inet6_hash_frag(__be32 id, const struct in6_addr *saddr,
{
u32 c;

c = jhash_3words((__force u32)saddr->s6_addr32[0],
(__force u32)saddr->s6_addr32[1],
(__force u32)saddr->s6_addr32[2],
rnd);

c = jhash_3words((__force u32)saddr->s6_addr32[3],
(__force u32)daddr->s6_addr32[0],
(__force u32)daddr->s6_addr32[1],
c);

c = jhash_3words((__force u32)daddr->s6_addr32[2],
(__force u32)daddr->s6_addr32[3],
(__force u32)id,
c);
c = jhash_3words(ipv6_addr_hash(saddr), ipv6_addr_hash(daddr), id, rnd);

return c & (INETFRAGS_HASHSZ - 1);
}
Expand Down

0 comments on commit 279e9f2

Please sign in to comment.