net/mlx5: fix entry size in construct data ipool

The mlx5_action_construct_data structure memory is managed by ipool
named acts_ipool.

The size of one entry in this ipool is mistakenly defined as size of
rte_flow_hw structure.
This size is used to reset in the allocated part. When the size is
incorrect it resets memory that does not belong to it.

This patch defines the correct size.

Fixes: f13fab2392 ("net/mlx5: add flow jump action")
Cc: stable@dpdk.org

Signed-off-by: Michael Baum <michaelba@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
This commit is contained in:
Michael Baum 2022-06-02 14:39:16 +03:00 committed by Raslan Darawsheh
parent dfa2f53387
commit 2192599c75

View File

@ -2044,7 +2044,7 @@ flow_hw_configure(struct rte_eth_dev *dev,
struct mlx5_hw_q_job *job = NULL;
uint32_t mem_size, i, j;
struct mlx5_indexed_pool_config cfg = {
.size = sizeof(struct rte_flow_hw),
.size = sizeof(struct mlx5_action_construct_data),
.trunk_size = 4096,
.need_lock = 1,
.release_mem_en = !!priv->sh->config.reclaim_mode,