From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58565) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsHlw-0003gF-UN for qemu-devel@nongnu.org; Mon, 07 Jan 2013 13:50:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TsHfB-0006Fx-GP for qemu-devel@nongnu.org; Mon, 07 Jan 2013 13:43:29 -0500 Received: from greensocs.com ([87.106.252.221]:53213 helo=s15328186.onlinehome-server.info) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TsHfB-0006Fm-7c for qemu-devel@nongnu.org; Mon, 07 Jan 2013 13:43:09 -0500 From: fred.konrad@greensocs.com Date: Mon, 7 Jan 2013 19:41:14 +0100 Message-Id: <1357584074-10852-62-git-send-email-fred.konrad@greensocs.com> In-Reply-To: <1357584074-10852-1-git-send-email-fred.konrad@greensocs.com> References: <1357584074-10852-1-git-send-email-fred.konrad@greensocs.com> Subject: [Qemu-devel] [PATCH 61/61] virtio : cleanup : init and exit function. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, aliguori@us.ibm.com Cc: kwolf@redhat.com, peter.maydell@linaro.org, e.voevodin@samsung.com, mst@redhat.com, mark.burton@greensocs.com, agraf@suse.de, amit.shah@redhat.com, aneesh.kumar@linux.vnet.ibm.com, stefanha@redhat.com, cornelia.huck@de.ibm.com, pbonzini@redhat.com, afaerber@suse.de, fred.konrad@greensocs.com From: KONRAD Frederic Clean the init and the exit function. It should be applied when all the device have been refactored. Signed-off-by: KONRAD Frederic --- hw/virtio.c | 15 --------------- hw/virtio.h | 4 ---- 2 files changed, 19 deletions(-) diff --git a/hw/virtio.c b/hw/virtio.c index a852adf..7214aa0 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -908,12 +908,6 @@ void virtio_common_cleanup(VirtIODevice *vdev) g_free(vdev->vq); } -void virtio_cleanup(VirtIODevice *vdev) -{ - virtio_common_cleanup(vdev); - g_free(vdev); -} - static void virtio_vmstate_change(void *opaque, int running, RunState state) { VirtIODevice *vdev = opaque; @@ -963,15 +957,6 @@ void virtio_init(VirtIODevice *vdev, const char *name, vdev); } -VirtIODevice *virtio_common_init(const char *name, uint16_t device_id, - size_t config_size, size_t struct_size) -{ - VirtIODevice *vdev; - vdev = g_malloc0(struct_size); - virtio_init(vdev, name, device_id, config_size); - return vdev; -} - hwaddr virtio_queue_get_desc_addr(VirtIODevice *vdev, int n) { return vdev->vq[n].vring.desc; diff --git a/hw/virtio.h b/hw/virtio.h index 3199676..c37f8f1 100644 --- a/hw/virtio.h +++ b/hw/virtio.h @@ -162,8 +162,6 @@ void virtio_save(VirtIODevice *vdev, QEMUFile *f); int virtio_load(VirtIODevice *vdev, QEMUFile *f); -void virtio_cleanup(VirtIODevice *vdev); - void virtio_notify_config(VirtIODevice *vdev); void virtio_queue_set_notification(VirtQueue *vq, int enable); @@ -174,8 +172,6 @@ int virtio_queue_empty(VirtQueue *vq); /* Host binding interface. */ -VirtIODevice *virtio_common_init(const char *name, uint16_t device_id, - size_t config_size, size_t struct_size); uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr); uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr); uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr); -- 1.7.11.7