diff options
-rw-r--r-- | vnet/vnet/devices/dpdk/vhost_user.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vnet/vnet/devices/dpdk/vhost_user.c b/vnet/vnet/devices/dpdk/vhost_user.c index 13f7083e73b..8a079867e8b 100644 --- a/vnet/vnet/devices/dpdk/vhost_user.c +++ b/vnet/vnet/devices/dpdk/vhost_user.c @@ -589,6 +589,14 @@ dpdk_vhost_user_set_vring_addr(u32 hw_if_index, u8 idx, uword desc, \ clib_warning("falied to set vring addr"); } + if (vq->last_used_idx != vq->used->idx) { + clib_warning("last_used_idx (%u) and vq->used->idx (%u) mismatches; " + "some packets maybe resent for Tx and dropped for Rx", + vq->last_used_idx, vq->used->idx); + vq->last_used_idx = vq->used->idx; + vq->last_used_idx_res = vq->used->idx; + } + /* * Inform the guest that there is no need to inform (kick) the * host when it adds buffers. kick results in vmexit and will |