From: Stefan Hajnoczi Date: Tue, 18 Mar 2014 16:50:52 +0000 (+0100) Subject: dataplane: fix implicit IOThread refcount X-Git-Tag: qemu-xen-4.5.0-rc1~95^2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=198fd05c357afff22f0b0e02639937519ed49b1f;p=qemu-upstream-4.5-testing.git dataplane: fix implicit IOThread refcount When creating an IOThread implicitly (the user did not specify x-iothread=) remember that iothread_find() does not return the object with an incremented refcount. Signed-off-by: Stefan Hajnoczi Reviewed-by: Fam Zheng Signed-off-by: Kevin Wolf --- diff --git a/hw/block/dataplane/virtio-blk.c b/hw/block/dataplane/virtio-blk.c index a5afc217c..f558b45a6 100644 --- a/hw/block/dataplane/virtio-blk.c +++ b/hw/block/dataplane/virtio-blk.c @@ -393,7 +393,6 @@ void virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *blk, if (blk->iothread) { s->internal_iothread = false; s->iothread = blk->iothread; - object_ref(OBJECT(s->iothread)); } else { /* Create per-device IOThread if none specified */ Error *local_err = NULL; @@ -408,6 +407,7 @@ void virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *blk, s->iothread = iothread_find(vdev->name); assert(s->iothread); } + object_ref(OBJECT(s->iothread)); s->ctx = iothread_get_aio_context(s->iothread); /* Prevent block operations that conflict with data plane thread */