summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmilio G. Cota2020-06-12 21:02:27 +0200
committerAlex Bennée2020-06-16 15:49:05 +0200
commit5107a47bb2bf3a7492db5f86cf02302f170a0bf0 (patch)
treea6208c1a8d2cb79b350dc96e76dd93cba4cafd89
parentcputlb: destroy CPUTLB with tlb_destroy (diff)
downloadqemu-5107a47bb2bf3a7492db5f86cf02302f170a0bf0.tar.gz
qemu-5107a47bb2bf3a7492db5f86cf02302f170a0bf0.tar.xz
qemu-5107a47bb2bf3a7492db5f86cf02302f170a0bf0.zip
qht: call qemu_spin_destroy for head buckets
Signed-off-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Robert Foley <robert.foley@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> [AJB: add implied cota s-o-b c.f. github.com/cota/qemu/tree/tsan @ 1bd1209] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200609200738.445-6-robert.foley@linaro.org> Message-Id: <20200612190237.30436-9-alex.bennee@linaro.org>
-rw-r--r--util/qht.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/qht.c b/util/qht.c
index aa51be3c52..67e5d5b916 100644
--- a/util/qht.c
+++ b/util/qht.c
@@ -348,6 +348,7 @@ static inline void qht_chain_destroy(const struct qht_bucket *head)
struct qht_bucket *curr = head->next;
struct qht_bucket *prev;
+ qemu_spin_destroy(&head->lock);
while (curr) {
prev = curr;
curr = curr->next;