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: v2.7.0-rc1~6^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b527247f09740920d8bc8aaa5ef4445256ca478;p=thirdparty%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 9bac1636c55..8a18f9b6692 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); }