From: "Michael S. Tsirkin" <mst@redhat.com>
To: arei.gonglei@huawei.com
Cc: agraf@suse.de, weidong.huang@huawei.com, armbru@redhat.com,
luonengjun@huawei.com, peter.huangpeng@huawei.com,
qemu-devel@nongnu.org, borntraeger@de.ibm.com,
stefanha@redhat.com, cornelia.huck@de.ibm.com,
pbonzini@redhat.com, rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH v3 00/12] virtio: fix virtio child recount in transports
Date: Tue, 30 Sep 2014 13:45:16 +0300 [thread overview]
Message-ID: <20140930104516.GA7089@redhat.com> (raw)
In-Reply-To: <1412070584-5200-1-git-send-email-arei.gonglei@huawei.com>
On Tue, Sep 30, 2014 at 05:49:32PM +0800, arei.gonglei@huawei.com wrote:
> From: Gonglei <arei.gonglei@huawei.com>
>
> virtio-$device-{pci, s390, ccw} all duplicate the
> qdev properties of their virtio child. This approach does
> not work well with string or pointer properties since we
> must be careful about leaking or double-freeing them.
>
> Use the QOM alias property to forward property accesses to the
> VirtIO$dev child. This way no duplication is necessary.
>
> For their child, object_initialize() leaves the object with a refcount of 1.
> object_property_add_child() adds its own reference which is dropped
> again when the property is deleted.
>
> The upshot of this is that we always have a refcount >= 1. Upon hot
> unplug the virtio-$device child is not finalized!
>
> Drop our reference after the child property has been added to the
> parent.
>
> Changes since v2:
> - fix some typos about commit message in PATCH 12 (Cornelia/Paolo)
> - add 'Reviewed-by' tag
For series:
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Paolo, pls feel free to apply this in your tree.
> Thanks for review!
>
> Changs since v1:
> - add the same handling for virtio-9p-pci device in PATCH 10 and PATCH 11.
> - add a wrapper function for better code sharing
> in PATCH 12 (Cornelia/Michael/Paolo)
>
>
> Attention please:
> As Michael's comments, the patches will introduce regresion about
> "-device FOO,help", which had been fixed by my other patch series:
> [PATCH v4 0/5] add description field in ObjectProperty and PropertyInfo struct
> http://lists.nongnu.org/archive/html/qemu-devel/2014-09/msg05740.html
>
> Acknowledgements:
> I copied Stefan's commit c5d49db message about virtio-blk which
> summarized reasons very well, I cannot agree more with him.
> Holp Stefan do not mind, thanks!
>
>
> Gonglei (12):
> virtio-net: use aliases instead of duplicate qdev properties
> virtio-net: fix virtio-net child refcount in transports
> virtio/vhost-scsi: use aliases instead of duplicate qdev properties
> virtio/vhost-scsi: fix virtio-scsi/vhost-scsi child refcount in
> transports
> virtio-serial: use aliases instead of duplicate qdev properties
> virtio-serial: fix virtio-serial child refcount in transports
> virtio-rng: use aliases instead of duplicate qdev properties
> virtio-rng: fix virtio-rng child refcount in transports
> virtio-balloon: fix virtio-balloon child refcount in transports
> virtio-9p: use aliases instead of duplicate qdev properties
> virtio-9p: fix virtio-9p child refcount in transports
> virtio: add a wrapper for virtio-backend initialization
>
> hw/s390x/s390-virtio-bus.c | 38 ++++++++++++++++++--------------------
> hw/s390x/virtio-ccw.c | 40 +++++++++++++++++++---------------------
> hw/virtio/virtio-pci.c | 46 ++++++++++++++++++++++------------------------
> hw/virtio/virtio.c | 11 +++++++++++
> include/hw/virtio/virtio.h | 3 +++
> 5 files changed, 73 insertions(+), 65 deletions(-)
>
> --
> 1.7.12.4
>
prev parent reply other threads:[~2014-09-30 10:42 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-30 9:49 [Qemu-devel] [PATCH v3 00/12] virtio: fix virtio child recount in transports arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 01/12] virtio-net: use aliases instead of duplicate qdev properties arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 02/12] virtio-net: fix virtio-net child refcount in transports arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 03/12] virtio/vhost-scsi: use aliases instead of duplicate qdev properties arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 04/12] virtio/vhost-scsi: fix virtio-scsi/vhost-scsi child refcount in transports arei.gonglei
2014-09-30 10:54 ` Cornelia Huck
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 05/12] virtio-serial: use aliases instead of duplicate qdev properties arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 06/12] virtio-serial: fix virtio-serial child refcount in transports arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 07/12] virtio-rng: use aliases instead of duplicate qdev properties arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 08/12] virtio-rng: fix virtio-rng child refcount in transports arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 09/12] virtio-balloon: fix virtio-balloon " arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 10/12] virtio-9p: use aliases instead of duplicate qdev properties arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 11/12] virtio-9p: fix virtio-9p child refcount in transports arei.gonglei
2014-09-30 9:49 ` [Qemu-devel] [PATCH v3 12/12] virtio: add a wrapper for virtio-backend initialization arei.gonglei
2014-09-30 10:57 ` Cornelia Huck
2014-09-30 10:45 ` Michael S. Tsirkin [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=20140930104516.GA7089@redhat.com \
--to=mst@redhat.com \
--cc=agraf@suse.de \
--cc=arei.gonglei@huawei.com \
--cc=armbru@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=luonengjun@huawei.com \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=stefanha@redhat.com \
--cc=weidong.huang@huawei.com \
/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.