Hi, From: Bing Zhao <bi...@nvidia.com> Sent: Tuesday, November 26, 2024 10:34 AM To: Dariusz Sosnowski; Slava Ovsiienko; dev@dpdk.org; Raslan Darawsheh Cc: Ori Kam; Suanming Mou; Matan Azrad; Maayan Kashani Subject: [PATCH v2] net/mlx5: fix the leak of action data list
In the actions construction for HWS non-template API, the `masks` parameter is always set to NULL and all the actions will be translated in the "construct" stage as non-fixed ones. In the stage of translating actions template, the actions data would be allocated from the pool and managed in a list. The list would be released when destroying the template with the actions. In the NT2HWS implementation, the temporary template was freed directly and the actions will be destroyed with the flow rule deletion. No other rule would use this list anymore. The actions data in the list should be freed when the actions construction is done. Fixes: ff4064d5b1fe ("net/mlx5: support bulk actions in non-template flow") Cc: mkash...@nvidia.com Signed-off-by: Bing Zhao <bi...@nvidia.com> Acked-by: Dariusz Sosnowski <dsosnow...@nvidia.com> --- v2: update the commit log --- Patch applied to next-net-mlx, Kindest regards, Raslan Darawsheh