All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: QEMU <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 1/3] char: clean up remaining chardevs when leaving
Date: Wed, 29 Jun 2016 13:40:53 +0200	[thread overview]
Message-ID: <CAJ+F1CJME0Frt94Jzz1bZcgkS3SqXB_T15o-+c4G7qG7hFObJg@mail.gmail.com> (raw)
In-Reply-To: <a7799d7f-2b7f-bc27-762e-76eedb9999f5@redhat.com>

Hi

On Wed, Jun 29, 2016 at 12:53 PM, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
>
> On 16/06/2016 21:28, marcandre.lureau@redhat.com wrote:
>> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>>
>> This helps to remove various chardev resources leaks when leaving qemu.
>>
>> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
>> ---
>>  qemu-char.c | 11 +++++++++++
>>  1 file changed, 11 insertions(+)
>>
>> diff --git a/qemu-char.c b/qemu-char.c
>> index c926e9a..98dcd49 100644
>> --- a/qemu-char.c
>> +++ b/qemu-char.c
>> @@ -4541,6 +4541,15 @@ void qmp_chardev_remove(const char *id, Error **errp)
>>      qemu_chr_delete(chr);
>>  }
>>
>> +static void qemu_chr_cleanup(void)
>> +{
>> +    CharDriverState *chr;
>> +
>> +    QTAILQ_FOREACH(chr, &chardevs, next) {
>> +        qemu_chr_delete(chr);
>> +    }
>> +}
>
> FYI, this patch is necessary on top:
>
> diff --git a/qemu-char.c b/qemu-char.c
> index 016badb..bc04ced 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -4551,9 +4551,9 @@
>
>  static void qemu_chr_cleanup(void)
>  {
> -    CharDriverState *chr;
> +    CharDriverState *chr, *tmp;
>
> -    QTAILQ_FOREACH(chr, &chardevs, next) {
> +    QTAILQ_FOREACH_SAFE(chr, &chardevs, next, tmp) {
>          qemu_chr_delete(chr);
>      }
>  }
>

ack, I guess you'll have it in your pull request? squash or seperate, anyhow.

thanks



-- 
Marc-André Lureau

  reply	other threads:[~2016-06-29 11:40 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-16 19:28 [Qemu-devel] [PATCH v2 0/3] chardev cleanups marcandre.lureau
2016-06-16 19:28 ` [Qemu-devel] [PATCH v2 1/3] char: clean up remaining chardevs when leaving marcandre.lureau
2016-06-23  9:34   ` Daniel P. Berrange
2016-06-29 10:53   ` Paolo Bonzini
2016-06-29 11:40     ` Marc-André Lureau [this message]
2016-06-16 19:28 ` [Qemu-devel] [PATCH v2 2/3] socket: add listen feature marcandre.lureau
2016-06-23  9:35   ` Daniel P. Berrange
2016-06-16 19:28 ` [Qemu-devel] [PATCH v2 3/3] socket: unlink unix socket on remove marcandre.lureau
2016-06-23  4:41   ` Michael S. Tsirkin
2016-06-23  4:51     ` Michael S. Tsirkin
2016-06-23  9:08       ` Marc-André Lureau
2016-06-23 17:01         ` Michael S. Tsirkin
2016-06-24 12:08           ` Marc-André Lureau
2016-06-24 12:13             ` Daniel P. Berrange
2016-06-24 22:07             ` Michael S. Tsirkin
2016-06-27  8:10               ` Daniel P. Berrange
2016-06-23  9:36   ` Daniel P. Berrange
2016-06-17 12:34 ` [Qemu-devel] [PATCH v2 0/3] chardev cleanups Paolo Bonzini
2016-06-23  9:36   ` Daniel P. Berrange

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJ+F1CJME0Frt94Jzz1bZcgkS3SqXB_T15o-+c4G7qG7hFObJg@mail.gmail.com \
    --to=marcandre.lureau@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.