From: Marc-André Lureau Date: Tue, 26 Jul 2016 21:15:00 +0000 (+0400) Subject: vhost: assert the log was cleaned up X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~6^2~13^2~6^2~75^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b527247f09740920d8bc8aaa5ef4445256ca478;p=sdk%2Femulator%2Fqemu.git vhost: assert the log was cleaned up Make sure the log was released on cleanup, or it will leak (the alternative is to call vhost_log_put() unconditionally, but it may hide some dev state issues). Signed-off-by: Marc-André Lureau Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index 9bac1636c5..8a18f9b669 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -1134,6 +1134,7 @@ void vhost_dev_cleanup(struct vhost_dev *hdev) g_free(hdev->mem); g_free(hdev->mem_sections); hdev->vhost_ops->vhost_backend_cleanup(hdev); + assert(!hdev->log); QLIST_REMOVE(hdev, entry); }