mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 15:48:20 +00:00
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>
This commit is contained in:
@ -688,7 +688,7 @@ static inline void qht_bucket_remove_entry(struct qht_bucket *orig, int pos)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (qht_entry_is_last(orig, pos)) {
|
if (qht_entry_is_last(orig, pos)) {
|
||||||
orig->hashes[pos] = 0;
|
qatomic_set(&orig->hashes[pos], 0);
|
||||||
qatomic_set(&orig->pointers[pos], NULL);
|
qatomic_set(&orig->pointers[pos], NULL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user