All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Ting Wang <kathy.wangting@huawei.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] virtio-scsi-dataplane: fix memory leak for VirtIOSCSIVring
Date: Thu, 26 Mar 2015 14:23:37 +0100	[thread overview]
Message-ID: <55140859.4080507@redhat.com> (raw)
In-Reply-To: <1427355752-25844-1-git-send-email-kathy.wangting@huawei.com>



On 26/03/2015 08:42, Ting Wang wrote:
> VirtIOSCSIVring which allocated in virtio_scsi_vring_init
> should be free when dataplane has been stopped or failed to start.
> 
> Signed-off-by: Ting Wang <kathy.wangting@huawei.com>
> ---
>  hw/scsi/virtio-scsi-dataplane.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c
> index c069cd7..5575648 100644
> --- a/hw/scsi/virtio-scsi-dataplane.c
> +++ b/hw/scsi/virtio-scsi-dataplane.c
> @@ -182,13 +182,19 @@ static void virtio_scsi_vring_teardown(VirtIOSCSI *s)
>  
>      if (s->ctrl_vring) {
>          vring_teardown(&s->ctrl_vring->vring, vdev, 0);
> +        g_slice_free(VirtIOSCSIVring, s->ctrl_vring);
> +        s->ctrl_vring = NULL;
>      }
>      if (s->event_vring) {
>          vring_teardown(&s->event_vring->vring, vdev, 1);
> +        g_slice_free(VirtIOSCSIVring, s->event_vring);
> +        s->event_vring = NULL;
>      }
>      if (s->cmd_vrings) {
>          for (i = 0; i < vs->conf.num_queues && s->cmd_vrings[i]; i++) {
>              vring_teardown(&s->cmd_vrings[i]->vring, vdev, 2 + i);
> +            g_slice_free(VirtIOSCSIVring, s->cmd_vrings[i]);
> +            s->cmd_vrings[i] = NULL;
>          }
>          free(s->cmd_vrings);
>          s->cmd_vrings = NULL;
> 

Applied for 2.3.0-rc2, thanks.

Paolo

      reply	other threads:[~2015-03-26 13:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-26  7:42 [Qemu-devel] [PATCH] virtio-scsi-dataplane: fix memory leak for VirtIOSCSIVring Ting Wang
2015-03-26 13:23 ` Paolo Bonzini [this message]

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=55140859.4080507@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=kathy.wangting@huawei.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.