Skip to content

Commit

Permalink
vhost: init used ring after backend was set
Browse files Browse the repository at this point in the history
Move the used ring initialization after backend was set. This
makes it possible to disable the backend and tweak the used ring,
then restart. This will also make it possible to log the used ring
write correctly.

Signed-off-by: Jason Wang <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
  • Loading branch information
jasowang authored and mstsirkin committed Jul 19, 2011
1 parent 81fc70d commit f59281d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions drivers/vhost/net.c
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,10 @@ static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
vhost_net_disable_vq(n, vq);
rcu_assign_pointer(vq->private_data, sock);
vhost_net_enable_vq(n, vq);

r = vhost_init_used(vq);
if (r)
goto err_vq;
}

mutex_unlock(&vq->mutex);
Expand Down
5 changes: 5 additions & 0 deletions drivers/vhost/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,13 @@ static long vhost_test_run(struct vhost_test *n, int test)
lockdep_is_held(&vq->mutex));
rcu_assign_pointer(vq->private_data, priv);

r = vhost_init_used(&n->vqs[index]);

mutex_unlock(&vq->mutex);

if (r)
goto err;

if (oldpriv) {
vhost_test_flush_vq(n, index);
}
Expand Down
14 changes: 6 additions & 8 deletions drivers/vhost/vhost.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,15 +629,17 @@ static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
return 0;
}

static int init_used(struct vhost_virtqueue *vq,
struct vring_used __user *used)
int vhost_init_used(struct vhost_virtqueue *vq)
{
int r = put_user(vq->used_flags, &used->flags);
int r;
if (!vq->private_data)
return 0;

r = put_user(vq->used_flags, &vq->used->flags);
if (r)
return r;
vq->signalled_used_valid = false;
return get_user(vq->last_used_idx, &used->idx);
return get_user(vq->last_used_idx, &vq->used->idx);
}

static long vhost_set_vring(struct vhost_dev *d, int ioctl, void __user *argp)
Expand Down Expand Up @@ -752,10 +754,6 @@ static long vhost_set_vring(struct vhost_dev *d, int ioctl, void __user *argp)
}
}

r = init_used(vq, (struct vring_used __user *)(unsigned long)
a.used_user_addr);
if (r)
break;
vq->log_used = !!(a.flags & (0x1 << VHOST_VRING_F_LOG));
vq->desc = (void __user *)(unsigned long)a.desc_user_addr;
vq->avail = (void __user *)(unsigned long)a.avail_user_addr;
Expand Down
1 change: 1 addition & 0 deletions drivers/vhost/vhost.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ int vhost_get_vq_desc(struct vhost_dev *, struct vhost_virtqueue *,
struct vhost_log *log, unsigned int *log_num);
void vhost_discard_vq_desc(struct vhost_virtqueue *, int n);

int vhost_init_used(struct vhost_virtqueue *);
int vhost_add_used(struct vhost_virtqueue *, unsigned int head, int len);
int vhost_add_used_n(struct vhost_virtqueue *, struct vring_used_elem *heads,
unsigned count);
Expand Down

0 comments on commit f59281d

Please sign in to comment.