qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RFC 0/5] virtio: use alias properties in transport devices
@ 2014-03-19 15:48 Stefan Hajnoczi
  2014-03-19 15:48 ` [Qemu-devel] [RFC 1/5] qdev: add child alias properties Stefan Hajnoczi
                   ` (6 more replies)
  0 siblings, 7 replies; 17+ messages in thread
From: Stefan Hajnoczi @ 2014-03-19 15:48 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Andreas Faerber, Stefan Hajnoczi, fred.konrad

This RFC is just the beginning.  The same problem exists for virtio-net and
other devices.  I am looking for feedback before I convert all of virtio.

The virtio transport/device split is broken as follows:

1. The virtio-blk device is never finalized because the transport devices
   (virtio-blk-pci and friends) leak the refcount.

2. If we fix the refcount leak then we double-free the 'serial' string property
   upon hot unplug since its char* is copied into the virtio-blk device which
   has an identical 'serial' qdev property.

This series solves both of these problems as follows:

1. Introduce a qdev child alias property that lets the transport device forward
   qdev property accesses into the virtio device (the child).

2. Use qdev child alias properties in transport devices, instead of keeping a
   duplicate copy of the VirtIOBlkConf struct.

3. Fix the virtio-blk device refcount leak.  It's now safe to do this since the
   double-free has been resolved.

Note about the new qdev child alias property type: I haven't made the alias
fully transparent yet.  Perhaps we should hide the alias completely?
$ qemu-system-x86_64 -device virtio-blk-pci,\?
...
virtio-blk-pci.logical_block_size=ChildAlias  <--- should be uint64 or similar

Stefan Hajnoczi (5):
  qdev: add child alias properties
  virtio: add child alias properties for virtio-blk
  virtio: use child aliases for virtio-blk transport properties
  virtio-blk: drop virtio_blk_set_conf()
  virtio: fix virtio-blk child refcount in transports

 hw/block/virtio-blk.c          |  6 ------
 hw/core/qdev-properties.c      | 28 ++++++++++++++++++++++++++++
 hw/s390x/s390-virtio-bus.c     |  4 ++--
 hw/s390x/s390-virtio-bus.h     |  1 -
 hw/s390x/virtio-ccw.c          |  6 +++---
 hw/s390x/virtio-ccw.h          |  1 -
 hw/virtio/virtio-pci.c         |  6 +++---
 hw/virtio/virtio-pci.h         |  1 -
 include/hw/block/block.h       | 14 ++++++++++++++
 include/hw/qdev-properties.h   | 28 ++++++++++++++++++++++++++++
 include/hw/virtio/virtio-blk.h | 17 ++++++++++++++++-
 11 files changed, 94 insertions(+), 18 deletions(-)

-- 
1.8.5.3

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2014-05-19 14:21 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-19 15:48 [Qemu-devel] [RFC 0/5] virtio: use alias properties in transport devices Stefan Hajnoczi
2014-03-19 15:48 ` [Qemu-devel] [RFC 1/5] qdev: add child alias properties Stefan Hajnoczi
2014-05-14 13:27   ` Andreas Färber
2014-05-14 13:31     ` Paolo Bonzini
2014-05-14 14:13   ` Peter Crosthwaite
2014-05-14 14:17     ` Andreas Färber
2014-05-14 14:26       ` Peter Crosthwaite
2014-03-19 15:48 ` [Qemu-devel] [RFC 2/5] virtio: add child alias properties for virtio-blk Stefan Hajnoczi
2014-05-14 14:04   ` Peter Crosthwaite
2014-05-14 14:33     ` Stefan Hajnoczi
2014-05-14 14:38       ` Peter Crosthwaite
2014-03-19 15:48 ` [Qemu-devel] [RFC 3/5] virtio: use child aliases for virtio-blk transport properties Stefan Hajnoczi
2014-03-19 15:48 ` [Qemu-devel] [RFC 4/5] virtio-blk: drop virtio_blk_set_conf() Stefan Hajnoczi
2014-03-19 15:48 ` [Qemu-devel] [RFC 5/5] virtio: fix virtio-blk child refcount in transports Stefan Hajnoczi
2014-05-14 13:21 ` [Qemu-devel] [RFC 0/5] virtio: use alias properties in transport devices Stefan Hajnoczi
2014-05-16 15:08 ` Frederic Konrad
2014-05-19 14:21   ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).