qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Alex Bennée
Subject: Re: [PATCH v1 05/12] qht: call qemu_spin_destroy for head buckets
Date: Tue, 02 Jun 2020 20:26:26 +0100
User-agent: mu4e 1.5.1; emacs 28.0.50

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]