]> git.droids-corp.org - dpdk.git/commitdiff
net/virtio-user: fix used ring in cvq handling
authorTiwei Bie <tiwei.bie@intel.com>
Tue, 22 Jan 2019 17:01:43 +0000 (01:01 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 24 Jan 2019 09:08:31 +0000 (10:08 +0100)
When updating used ring, the id in used element should be the
index of the first desc in the desc chain.

Fixes: f9b9d1a55775 ("net/virtio-user: add multiple queues in device emulation")
Cc: stable@dpdk.org
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
drivers/net/virtio/virtio_user/virtio_user_dev.c

index 89d287a740c0cd737936672c70d4bdb98b3ef8f8..d1157378d4e69cdbab1f14686fc8d401154a30c6 100644 (file)
@@ -722,7 +722,7 @@ virtio_user_handle_cq(struct virtio_user_dev *dev, uint16_t queue_idx)
 
                /* Update used ring */
                uep = &vring->used->ring[avail_idx];
-               uep->id = avail_idx;
+               uep->id = desc_idx;
                uep->len = n_descs;
 
                vring->used->idx++;