Re: [dpdk-dev] [PATCH v2 1/4] net/mlx: add debug checks to glue structure

2018-02-05 Thread Adrien Mazarguil
On Mon, Feb 05, 2018 at 10:27:10AM -0200, Marcelo Ricardo Leitner wrote: > On Fri, Feb 02, 2018 at 05:46:12PM +0100, Adrien Mazarguil wrote: > > This code should catch mistakes early if a glue structure member is added > > without a corresponding implementation in the library. > > > > Signed-off-b

Re: [dpdk-dev] [PATCH v2 1/4] net/mlx: add debug checks to glue structure

2018-02-05 Thread Marcelo Ricardo Leitner
On Fri, Feb 02, 2018 at 05:46:12PM +0100, Adrien Mazarguil wrote: > This code should catch mistakes early if a glue structure member is added > without a corresponding implementation in the library. > > Signed-off-by: Adrien Mazarguil > --- > drivers/net/mlx4/mlx4.c | 9 + > drivers/net/

[dpdk-dev] [PATCH v2 1/4] net/mlx: add debug checks to glue structure

2018-02-02 Thread Adrien Mazarguil
This code should catch mistakes early if a glue structure member is added without a corresponding implementation in the library. Signed-off-by: Adrien Mazarguil --- drivers/net/mlx4/mlx4.c | 9 + drivers/net/mlx5/mlx5.c | 9 + 2 files changed, 18 insertions(+) diff --git a/drive