diff options
author | Emilio Cota <cota@braap.org> | 2023-01-24 18:01:19 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2023-02-02 11:48:20 +0000 |
commit | def48dddcfb2b8d9ef64ba5e6845ace006d30d27 (patch) | |
tree | 30eb650165bdd386d7b95341b1b1677fd0431a04 /util | |
parent | 4731f89b3b9690efccb6084b9fee43083669de14 (diff) | |
download | qemu-def48dddcfb2b8d9ef64ba5e6845ace006d30d27.zip qemu-def48dddcfb2b8d9ef64ba5e6845ace006d30d27.tar.gz qemu-def48dddcfb2b8d9ef64ba5e6845ace006d30d27.tar.bz2 |
util/qht: add missing atomic_set(hashes[i])
We forgot to add this one in "a890643958 util/qht: atomically set b->hashes".
Detected with tsan.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Emilio Cota <cota@braap.org>
Message-Id: <20230111151628.320011-3-cota@braap.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20230124180127.1881110-28-alex.bennee@linaro.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/qht.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -688,7 +688,7 @@ static inline void qht_bucket_remove_entry(struct qht_bucket *orig, int pos) int i; if (qht_entry_is_last(orig, pos)) { - orig->hashes[pos] = 0; + qatomic_set(&orig->hashes[pos], 0); qatomic_set(&orig->pointers[pos], NULL); return; } |