Re: [dpdk-dev] [PATCH] net/mlx5: fix hex dump of error CQE

2019-03-07 Thread Shahaf Shuler
Thursday, February 28, 2019 5:19 PM, Dekel Peled: > Subject: [dpdk-dev] [PATCH] net/mlx5: fix hex dump of error CQE > > struct mlx5_cqe is defined in MLX5 PMD code (mlx5_prm.h). > It includes 64 bytes padding in case of (RTE_CACHE_LINE_SIZE == 128). > > struct mlx5_err_cqe is

[dpdk-dev] [PATCH] net/mlx5: fix hex dump of error CQE

2019-02-28 Thread Dekel Peled
struct mlx5_cqe is defined in MLX5 PMD code (mlx5_prm.h). It includes 64 bytes padding in case of (RTE_CACHE_LINE_SIZE == 128). struct mlx5_err_cqe is defined in kernel, and doesn't include padding. When running in debug mode, in case an error CQE is detected it is printed using rte_hexdump(). T