[dpdk-dev] [PATCH] net/mlx5: fix Tx when first segment size is too short

2017-03-29 Thread Nelio Laranjeiro
First segment size must be at least 18 bytes, packets not respecting this are silently not sent by the NIC but counted as sent by the PMD. The only way to figure out is compiling the PMD in debug mode. Cc: sta...@dpdk.org Fixes: 6579c27c11a5 ("net/mlx5: remove gather loop on segments") Signed-of

[dpdk-dev] [PATCH] net/mlx5: fix Tx when first segment size is too short

2017-03-29 Thread Nelio Laranjeiro
First segment size must be 18 bytes, packets not respecting this are silently not sent by the NIC but counted as sent by the PMD. The only way to figure out is compiling the PMD in debug mode. Cc: sta...@dpdk.org Fixes: 6579c27c11a5 ("net/mlx5: remove gather loop on segments") Signed-off-by: Neli