Commit ae36f6a6 authored by Stefan Hajnoczi's avatar Stefan Hajnoczi Committed by Greg Kroah-Hartman

vhost/vsock: handle vhost_vq_init_access() error


[ Upstream commit 0516ffd8 ]

Propagate the error when vhost_vq_init_access() fails and set
vq->private_data to NULL.
Signed-off-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b13b3b70
...@@ -368,6 +368,7 @@ static void vhost_vsock_handle_rx_kick(struct vhost_work *work) ...@@ -368,6 +368,7 @@ static void vhost_vsock_handle_rx_kick(struct vhost_work *work)
static int vhost_vsock_start(struct vhost_vsock *vsock) static int vhost_vsock_start(struct vhost_vsock *vsock)
{ {
struct vhost_virtqueue *vq;
size_t i; size_t i;
int ret; int ret;
...@@ -378,19 +379,20 @@ static int vhost_vsock_start(struct vhost_vsock *vsock) ...@@ -378,19 +379,20 @@ static int vhost_vsock_start(struct vhost_vsock *vsock)
goto err; goto err;
for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) { for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
struct vhost_virtqueue *vq = &vsock->vqs[i]; vq = &vsock->vqs[i];
mutex_lock(&vq->mutex); mutex_lock(&vq->mutex);
if (!vhost_vq_access_ok(vq)) { if (!vhost_vq_access_ok(vq)) {
ret = -EFAULT; ret = -EFAULT;
mutex_unlock(&vq->mutex);
goto err_vq; goto err_vq;
} }
if (!vq->private_data) { if (!vq->private_data) {
vq->private_data = vsock; vq->private_data = vsock;
vhost_vq_init_access(vq); ret = vhost_vq_init_access(vq);
if (ret)
goto err_vq;
} }
mutex_unlock(&vq->mutex); mutex_unlock(&vq->mutex);
...@@ -400,8 +402,11 @@ static int vhost_vsock_start(struct vhost_vsock *vsock) ...@@ -400,8 +402,11 @@ static int vhost_vsock_start(struct vhost_vsock *vsock)
return 0; return 0;
err_vq: err_vq:
vq->private_data = NULL;
mutex_unlock(&vq->mutex);
for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) { for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
struct vhost_virtqueue *vq = &vsock->vqs[i]; vq = &vsock->vqs[i];
mutex_lock(&vq->mutex); mutex_lock(&vq->mutex);
vq->private_data = NULL; vq->private_data = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment