diff options
author | KONRAD Frederic <fred.konrad@greensocs.com> | 2013-04-24 10:21:22 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-24 11:50:21 -0500 |
commit | 6a1a8cc7af5741a4221e1c5bc80c41390d896ff5 (patch) | |
tree | 39abf80dd8ff2dcf30563832304c01b027cd353e /hw/block/virtio-blk.c | |
parent | 1c819449836b926d6f9db860127211ef092da88e (diff) | |
download | qemu-6a1a8cc7af5741a4221e1c5bc80c41390d896ff5.zip |
virtio: cleanup: init and exit function.
This clean the init and the exit functions and rename virtio_common_cleanup
to virtio_cleanup.
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
Message-id: 1366791683-5350-7-git-send-email-fred.konrad@greensocs.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/block/virtio-blk.c')
-rw-r--r-- | hw/block/virtio-blk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c index efad690239..cf12469b50 100644 --- a/hw/block/virtio-blk.c +++ b/hw/block/virtio-blk.c @@ -661,7 +661,7 @@ static int virtio_blk_device_init(VirtIODevice *vdev) s->vq = virtio_add_queue(vdev, 128, virtio_blk_handle_output); #ifdef CONFIG_VIRTIO_BLK_DATA_PLANE if (!virtio_blk_data_plane_create(vdev, blk, &s->dataplane)) { - virtio_common_cleanup(vdev); + virtio_cleanup(vdev); return -1; } #endif @@ -689,7 +689,7 @@ static int virtio_blk_device_exit(DeviceState *dev) qemu_del_vm_change_state_handler(s->change); unregister_savevm(dev, "virtio-blk", s); blockdev_mark_auto_del(s->bs); - virtio_common_cleanup(vdev); + virtio_cleanup(vdev); return 0; } |