diff mbox series

[v1,05/12] qht: call qemu_spin_destroy for head buckets

Message ID 20200529132341.755-5-robert.foley@linaro.org
State Superseded
Headers show
Series Add Thread Sanitizer support to QEMU | expand

Commit Message

Robert Foley May 29, 2020, 1:23 p.m. UTC
From: "Emilio G. Cota" <cota@braap.org>


Signed-off-by: Robert Foley <robert.foley@linaro.org>

---
 util/qht.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.17.1

Comments

Alex Bennée June 2, 2020, 7:26 p.m. UTC | #1
Robert Foley <robert.foley@linaro.org> writes:

> From: "Emilio G. Cota" <cota@braap.org>

>

> Signed-off-by: Robert Foley <robert.foley@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;


Reviewed-by: Alex Bennée <alex.bennee@linaro.org>



-- 
Alex Bennée
diff mbox series

Patch

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;