From e1c648055f48003a2b8cbc80979a8f48a3e5f114 Mon Sep 17 00:00:00 2001 From: Jianfeng Tan Date: Wed, 20 Jan 2016 03:18:11 +0800 Subject: [PATCH] examples/vhost: fix out of sequence packets Issue description: when packets go through vhost example to virtio device and come back to another virtio device or physical NIC, the sequence of packets will be changed. Reported-by: Thomas Long Signed-off-by: Jianfeng Tan Acked-by: Yuanhan Liu --- examples/vhost/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c index a97300b954..a45cddb800 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -1422,8 +1422,8 @@ switch_worker(__attribute__((unused)) void *arg) rte_pktmbuf_free(pkts_burst[--tx_count]); } } - while (tx_count) - virtio_tx_route(vdev, pkts_burst[--tx_count], (uint16_t)dev->device_fh); + for (i = 0; i < tx_count; ++i) + virtio_tx_route(vdev, pkts_burst[i], (uint16_t)dev->device_fh); } /*move to the next device in the list*/ -- 2.20.1