Re: [ovs-dev] [PATCHv5 07/12] hash: Add 128-bit murmurhash.

2014-09-17 Thread Joe Stringer
On 18 September 2014 11:03, Ben Pfaff wrote: > On Mon, Sep 15, 2014 at 02:25:13PM +1200, Joe Stringer wrote: > > Add the 128-bit murmurhash by Austin Appleby, for 32-bit systems from: > > http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp > > > > Signed-off-by: Joe Stringer >

Re: [ovs-dev] [PATCHv5 07/12] hash: Add 128-bit murmurhash.

2014-09-17 Thread Ben Pfaff
On Mon, Sep 15, 2014 at 02:25:13PM +1200, Joe Stringer wrote: > Add the 128-bit murmurhash by Austin Appleby, for 32-bit systems from: > http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp > > Signed-off-by: Joe Stringer Why does the loop in hash_words128 count up from a negati

[ovs-dev] [PATCHv5 07/12] hash: Add 128-bit murmurhash.

2014-09-14 Thread Joe Stringer
Add the 128-bit murmurhash by Austin Appleby, for 32-bit systems from: http://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp Signed-off-by: Joe Stringer --- v5: No change. v4: Minor comments and style fixes. v3: Rebase. --- include/openvswitch/types.h |5 ++ lib/hash.c