diff mbox series

[2/8] vhost: Not cleaning batched descs in VHOST_SET_VRING_BASE ioctl

Message ID 20200403165119.5030-3-eperezma@redhat.com (mailing list archive)
State New, archived
Headers show
Series tools/vhost: Reset virtqueue on tests | expand

Commit Message

Eugenio Perez Martin April 3, 2020, 4:51 p.m. UTC
They are cleaned in vhost_vq_set_backend
---
 drivers/vhost/vhost.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
index 0395229486a9..882d0df57e24 100644
--- a/drivers/vhost/vhost.c
+++ b/drivers/vhost/vhost.c
@@ -1579,7 +1579,6 @@  long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *arg
 		vq->last_avail_idx = s.num;
 		/* Forget the cached index value. */
 		vq->avail_idx = vq->last_avail_idx;
-		vq->ndescs = vq->first_desc = 0;
 		break;
 	case VHOST_GET_VRING_BASE:
 		s.index = idx;