From: KONRAD Frederic <fred.kon...@greensocs.com> The qdev field is no longer needed, just drop it.
Signed-off-by: KONRAD Frederic <fred.kon...@greensocs.com> --- hw/virtio-blk.c | 3 +-- hw/virtio-blk.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c index c19d347..74ba97b 100644 --- a/hw/virtio-blk.c +++ b/hw/virtio-blk.c @@ -671,7 +671,6 @@ static int virtio_blk_device_init(VirtIODevice *vdev) #endif qemu_add_vm_change_state_handler(virtio_blk_dma_restart_cb, s); - s->qdev = qdev; register_savevm(qdev, "virtio-blk", virtio_blk_id++, 2, virtio_blk_save, virtio_blk_load, s); bdrv_set_dev_ops(s->bs, &virtio_block_ops, s); @@ -691,7 +690,7 @@ static int virtio_blk_device_exit(DeviceState *dev) virtio_blk_data_plane_destroy(s->dataplane); s->dataplane = NULL; #endif - unregister_savevm(s->qdev, "virtio-blk", s); + unregister_savevm(dev, "virtio-blk", s); blockdev_mark_auto_del(s->bs); virtio_common_cleanup(vdev); return 0; diff --git a/hw/virtio-blk.h b/hw/virtio-blk.h index 2b3c99a..f281ac3 100644 --- a/hw/virtio-blk.h +++ b/hw/virtio-blk.h @@ -121,7 +121,6 @@ typedef struct VirtIOBlock { BlockConf *conf; VirtIOBlkConf blk; unsigned short sector_mask; - DeviceState *qdev; #ifdef CONFIG_VIRTIO_BLK_DATA_PLANE VirtIOBlockDataPlane *dataplane; #endif -- 1.7.11.7