aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_vhost/vhost_rxtx.c
diff options
context:
space:
mode:
authorRicardo Salveti <ricardo.salveti@linaro.org>2016-07-26 14:11:48 -0300
committerRicardo Salveti <ricardo.salveti@linaro.org>2016-07-26 14:12:04 -0300
commit6380daca5bd4e1740ad8afd0224f7bcbe5626ec7 (patch)
tree483ec63053763494272e9ef1018261eb77fd97b8 /lib/librte_vhost/vhost_rxtx.c
parent7b53c036e6bf56623b8273018ff1c8cc62847857 (diff)
Imported Upstream version 16.07-rc5
Change-Id: I3f93dd2982ddb9c0209bc44466d05a2320175938 Signed-off-by: Ricardo Salveti <ricardo.salveti@linaro.org>
Diffstat (limited to 'lib/librte_vhost/vhost_rxtx.c')
-rw-r--r--lib/librte_vhost/vhost_rxtx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/librte_vhost/vhost_rxtx.c b/lib/librte_vhost/vhost_rxtx.c
index bc00518a..08a73fd0 100644
--- a/lib/librte_vhost/vhost_rxtx.c
+++ b/lib/librte_vhost/vhost_rxtx.c
@@ -748,7 +748,7 @@ copy_desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq,
break;
if (unlikely(desc->next >= vq->size ||
- ++nr_desc >= vq->size))
+ ++nr_desc > vq->size))
return -1;
desc = &vq->desc[desc->next];