Re: [PATCH] regex/mlx5: correct value written to doorbell db rec

2023-03-10 Thread Thomas Monjalon
21/02/2023 08:49, Gerry Gribbon: > We were writing a value that should represent the number of items to be > processed by hardware. The value being written was off by 1 (N*4)+3; > The value should be (N*4) + 4 simplified to (N+1)*4 > > Fixes: 5dfa003db53f ("common/mlx5: fix post doorbell barrier")

[PATCH] regex/mlx5: correct value written to doorbell db rec

2023-02-20 Thread Gerry Gribbon
We were writing a value that should represent the number of items to be processed by hardware. The value being written was off by 1 (N*4)+3; The value should be (N*4) + 4 simplified to (N+1)*4 Fixes: 5dfa003db53f ("common/mlx5: fix post doorbell barrier") Cc: sta...@dpdk.org Signed-off-by: Gerry