When compiling the driver without macro for direct rules, the flow table reference count should also be in the flow table resource structure.
Fixes: c7455199284a ("net/mlx5: reorganize flow tables with hash list") Signed-off-by: Bing Zhao <bi...@mellanox.com> --- drivers/net/mlx5/mlx5.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/net/mlx5/mlx5.h b/drivers/net/mlx5/mlx5.h index 3296f10..feac5a3 100644 --- a/drivers/net/mlx5/mlx5.h +++ b/drivers/net/mlx5/mlx5.h @@ -587,9 +587,7 @@ struct mlx5_ibv_shared_port { /* Table structure. */ struct mlx5_flow_tbl_resource { void *obj; /**< Pointer to DR table object. */ -#ifdef HAVE_MLX5DV_DR rte_atomic32_t refcnt; /**< Reference counter. */ -#endif }; #define MLX5_MAX_TABLES UINT16_MAX -- 1.8.3.1