lib/hash.h: fix hash_2words
authorAndy Zhou <azhou@nicira.com>
Fri, 28 Mar 2014 02:08:36 +0000 (19:08 -0700)
committerAndy Zhou <azhou@nicira.com>
Fri, 28 Mar 2014 19:51:00 +0000 (12:51 -0700)
Number of bytes in 2 words should be 8, instead of 4 bytes,
to better follow the mhash_finish() API. It is unlikely the fix
will improve the quality of hashing results.

Signed-off-by: Andy Zhou <azhou@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/hash.h

index f8a72ed..0e8edf3 100644 (file)
@@ -115,7 +115,7 @@ static inline uint32_t hash_pointer(const void *p, uint32_t basis)
 
 static inline uint32_t hash_2words(uint32_t x, uint32_t y)
 {
-    return mhash_finish(mhash_add(mhash_add(x, 0), y), 4);
+    return mhash_finish(mhash_add(mhash_add(x, 0), y), 8);
 }
 
 #ifdef __cplusplus