net/mlx5: fix overflow of Rx SW ring
authorYongseok Koh <yskoh@mellanox.com>
Thu, 5 Oct 2017 21:37:29 +0000 (14:37 -0700)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 6 Oct 2017 00:49:50 +0000 (02:49 +0200)
commitfc048bd52cb7e3382da86629a5aef89f1377aca8
treef51ce1621e75f1a78621fa03aae6a6086b95639e
parent8073bc818ce11feab570b87efdae410357a581f9
net/mlx5: fix overflow of Rx SW ring

If vectorized Rx burst is short of mbufs in replenishment, Rx SW ring can
overflow as the Rx burst handles 4 packets in a loop. This is because the
function fills SW ring and its mbufs first and checks validity of
each completion later. So, there should be some buffer slots at the tail of
the ring to protect mbufs which are already owned by application.

Fixes: 6cb559d67b83 ("net/mlx5: add vectorized Rx/Tx burst for x86")
Cc: stable@dpdk.org
Reported-by: Martin Weiser <martin.weiser@allegro-packets.com>
Signed-off-by: Yongseok Koh <yskoh@mellanox.com>
drivers/net/mlx5/mlx5_rxtx_vec_sse.c