[dpdk-dev] [PATCH v4 24/26] net/mlx5: change memory release configuration
Suanming Mou
suanmingm at nvidia.com
Tue Jul 6 15:32:55 CEST 2021
This commit changes the index pool memory release configuration
to 0 when memory reclaim mode is not required.
Signed-off-by: Suanming Mou <suanmingm at nvidia.com>
Acked-by: Matan Azrad <matan at nvidia.com>
---
drivers/net/mlx5/mlx5.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
index 53dee9164a..10594f5961 100644
--- a/drivers/net/mlx5/mlx5.c
+++ b/drivers/net/mlx5/mlx5.c
@@ -795,6 +795,8 @@ mlx5_flow_ipool_create(struct mlx5_dev_ctx_shared *sh,
if (config->reclaim_mode) {
cfg.release_mem_en = 1;
cfg.per_core_cache = 0;
+ } else {
+ cfg.release_mem_en = 0;
}
sh->ipool[i] = mlx5_ipool_create(&cfg);
}
--
2.25.1
More information about the dev
mailing list