0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-18 19:35:20 +00:00

Changed IPv4 hash function to simple multiplication.

This commit is contained in:
Jan Maria Matejka 2018-10-30 15:25:32 +01:00
parent 14375237f6
commit 84661bf6da

View File

@ -186,13 +186,7 @@ static inline int ipa_nonzero2(ip_addr a)
*/
static inline u32 ip4_hash(ip4_addr a)
{
/* Returns a 32-bit value, although low-order bits are not mixed */
u32 x = _I(a);
x ^= x << 16;
x ^= x << 12;
return x;
}
{ return u32_hash(_I(a)); }
static inline u32 ip6_hash(ip6_addr a)
{