[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 05/13] qht: call qemu_spin_destroy for head buckets
From: |
Robert Foley |
Subject: |
[PATCH v3 05/13] qht: call qemu_spin_destroy for head buckets |
Date: |
Tue, 9 Jun 2020 16:07:30 -0400 |
From: "Emilio G. Cota" <cota@braap.org>
Signed-off-by: Robert Foley <robert.foley@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
---
util/qht.c | 1 +
1 file changed, 1 insertion(+)
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;
--
2.17.1
- [PATCH v3 00/13] Add Thread Sanitizer support to QEMU, Robert Foley, 2020/06/09
- [PATCH v3 01/13] configure: add --enable-tsan flag + fiber annotations for coroutine-ucontext, Robert Foley, 2020/06/09
- [PATCH v3 02/13] cpu: convert queued work to a QSIMPLEQ, Robert Foley, 2020/06/09
- [PATCH v3 03/13] thread: add qemu_spin_destroy, Robert Foley, 2020/06/09
- [PATCH v3 04/13] cputlb: destroy CPUTLB with tlb_destroy, Robert Foley, 2020/06/09
- [PATCH v3 05/13] qht: call qemu_spin_destroy for head buckets,
Robert Foley <=
- [PATCH v3 06/13] tcg: call qemu_spin_destroy for tb->jmp_lock, Robert Foley, 2020/06/09
- [PATCH v3 07/13] translate-all: call qemu_spin_destroy for PageDesc, Robert Foley, 2020/06/09
- [PATCH v3 08/13] thread: add tsan annotations to QemuSpin, Robert Foley, 2020/06/09
- [PATCH v3 09/13] tests/docker: Added docker build support for TSan., Robert Foley, 2020/06/09
- [PATCH v3 10/13] include/qemu: Added tsan.h for annotations., Robert Foley, 2020/06/09
- [PATCH v3 11/13] util: Added tsan annotate for thread name., Robert Foley, 2020/06/09
- [PATCH v3 12/13] docs: Added details on TSan to testing.rst, Robert Foley, 2020/06/09
- [PATCH v3 13/13] tests: Disable select tests under TSan, which hit TSan issue., Robert Foley, 2020/06/09
- Re: [PATCH v3 00/13] Add Thread Sanitizer support to QEMU, Alex Bennée, 2020/06/10