From: Mike Christie <michael.chris...@oracle.com> [ Upstream commit 37787e9f81e2e586b526ff5c29c94e4f41513e80 ]
We must free the vqs array in the open failure path, because vhost_vdpa_release will not be called. Signed-off-by: Mike Christie <michael.chris...@oracle.com> Link: https://lore.kernel.org/r/1600712588-9514-2-git-send-email-michael.chris...@oracle.com Signed-off-by: Michael S. Tsirkin <m...@redhat.com> Acked-by: Jason Wang <jasow...@redhat.com> Signed-off-by: Sasha Levin <sas...@kernel.org> --- drivers/vhost/vdpa.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/vhost/vdpa.c b/drivers/vhost/vdpa.c index a54b60d6623f0..13cdf38f8578a 100644 --- a/drivers/vhost/vdpa.c +++ b/drivers/vhost/vdpa.c @@ -760,6 +760,7 @@ static int vhost_vdpa_open(struct inode *inode, struct file *filep) err_init_iotlb: vhost_dev_cleanup(&v->vdev); + kfree(vqs); err: atomic_dec(&v->opened); return r; -- 2.25.1