Re: [ovs-dev] [PATCH v3 04/14] treewide: Fix invalid bit shift operations.

2022-02-25 Thread Dumitru Ceara
On 2/14/22 23:04, Ilya Maximets wrote: > On 1/24/22 15:18, Dumitru Ceara wrote: >> UB Sanitizer reports: >> tests/test-hash.c:59:40: runtime error: shift exponent 64 is too large for >> 64-bit type 'long unsigned int' >> #0 0x44c3c9 in get_range128 tests/test-hash.c:59 >> #1 0x44cb2e

Re: [ovs-dev] [PATCH v3 04/14] treewide: Fix invalid bit shift operations.

2022-02-14 Thread Ilya Maximets
On 1/24/22 15:18, Dumitru Ceara wrote: > UB Sanitizer reports: > tests/test-hash.c:59:40: runtime error: shift exponent 64 is too large for > 64-bit type 'long unsigned int' > #0 0x44c3c9 in get_range128 tests/test-hash.c:59 > #1 0x44cb2e in check_hash_bytes128 tests/test-hash.c:178

Re: [ovs-dev] [PATCH v3 04/14] treewide: Fix invalid bit shift operations.

2022-02-03 Thread Paolo Valerio
Dumitru Ceara writes: > UB Sanitizer reports: > tests/test-hash.c:59:40: runtime error: shift exponent 64 is too large for > 64-bit type 'long unsigned int' > #0 0x44c3c9 in get_range128 tests/test-hash.c:59 > #1 0x44cb2e in check_hash_bytes128 tests/test-hash.c:178 > #2 0x44

[ovs-dev] [PATCH v3 04/14] treewide: Fix invalid bit shift operations.

2022-01-24 Thread Dumitru Ceara
UB Sanitizer reports: tests/test-hash.c:59:40: runtime error: shift exponent 64 is too large for 64-bit type 'long unsigned int' #0 0x44c3c9 in get_range128 tests/test-hash.c:59 #1 0x44cb2e in check_hash_bytes128 tests/test-hash.c:178 #2 0x44d14d in test_hash_main tests/test-ha