[dpdk-dev,v2] examples/vhost: fix sending arp packet to self
Checks
Commit Message
ARP packets are not dropped when dest vdev is itself, which breaks
RX ring inconspicuously.
Fixes: 9c5ef51207c6 ("examples/vhost: handle broadcast packet")
Signed-off-by: Junjie Chen <junjie.j.chen@intel.com>
---
v2:
- Add fixline in commit message.
examples/vhost/main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Comments
On Fri, Dec 29, 2017 at 09:33:19AM -0500, Junjie Chen wrote:
> ARP packets are not dropped when dest vdev is itself, which breaks
> RX ring inconspicuously.
>
> Fixes: 9c5ef51207c6 ("examples/vhost: handle broadcast packet")
>
> Signed-off-by: Junjie Chen <junjie.j.chen@intel.com>
> ---
Applied to dpdk-next-virtio.
Thanks.
--yliu
@@ -964,7 +964,8 @@ virtio_tx_route(struct vhost_dev *vdev, struct rte_mbuf *m, uint16_t vlan_tag)
struct vhost_dev *vdev2;
TAILQ_FOREACH(vdev2, &vhost_dev_list, global_vdev_entry) {
- virtio_xmit(vdev2, vdev, m);
+ if (vdev2 != vdev)
+ virtio_xmit(vdev2, vdev, m);
}
goto queue2nic;
}