diff mbox series

[net,mlxsw,v2,3/4] mlxsw: core_acl_flex_actions: Remove redundant counter destruction

Message ID 20180731144359.19354-4-nird@mellanox.com (mailing list archive)
State Changes Requested
Delegated to: Ido Schimmel
Headers show
Series mlxsw: Fix ACL actions error condition handling | expand

Commit Message

Nir Dotan July 31, 2018, 2:43 p.m. UTC
Each tc flower rule uses a hidden count action. As counter
resource may not be available due to limited HW resources, update
counter_create-counter_destroy pair to follow previously introduced
symmetric error condition handling, add a call to mlxsw_afa_resource_del()
as part of the counter resource destruction.

Fixes: c18c1e186ba8 ("mlxsw: core: Make counter index allocated inside the action append")
Signed-off-by: Nir Dotan <nird@mellanox.com>
---

Notes:
    v2:
    * Split this patch from patch #2

 drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c b/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c
index d664cc0..a54f23f 100644
--- a/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c
+++ b/drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.c
@@ -584,6 +584,7 @@  static void
 mlxsw_afa_counter_destroy(struct mlxsw_afa_block *block,
 			  struct mlxsw_afa_counter *counter)
 {
+	mlxsw_afa_resource_del(&counter->resource);
 	block->afa->ops->counter_index_put(block->afa->ops_priv,
 					   counter->counter_index);
 	kfree(counter);