commit | 8b5075806d551a7a20693b5edb76a6e8d2fe1816 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Feb 25 09:35:07 2020 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Feb 25 09:35:07 2020 +0100 |
tree | f35e0100ba042ac7ed5250bfea4b405a89c4b41c | |
parent | 2b9f0664d601188f074f14c8844bc05d5cdeebff [diff] |
CLEANUP: cache: use read_u32/write_u32 to access the cache entry's hash Enabling strict aliasing fails on the cache's hash which is a series of 20 bytes cast as u32. And in practice it could even fail on some archs if the http_txn didn't guarantee the hash was properly aligned. Let's use read_u32() to read the value and write_u32() to set it, this makes sure the compiler emits the correct code to access these and knows about the intentional aliasing.