[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200228172505.14386-12-jiri@resnulli.us>
Date: Fri, 28 Feb 2020 18:25:04 +0100
From: Jiri Pirko <jiri@...nulli.us>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net, kuba@...nel.org, saeedm@...lanox.com,
leon@...nel.org, michael.chan@...adcom.com, vishal@...lsio.com,
jeffrey.t.kirsher@...el.com, idosch@...lanox.com,
aelior@...vell.com, peppe.cavallaro@...com,
alexandre.torgue@...com, jhs@...atatu.com,
xiyou.wangcong@...il.com, pablo@...filter.org,
ecree@...arflare.com, mlxsw@...lanox.com
Subject: [patch net-next v2 11/12] flow_offload: introduce "disabled" HW stats type and allow it in mlxsw
From: Jiri Pirko <jiri@...lanox.com>
Introduce new type for disabled HW stats and allow the value in
mlxsw offload.
Signed-off-by: Jiri Pirko <jiri@...lanox.com>
---
v1->v2:
- moved to action
---
drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.c | 2 ++
include/net/flow_offload.h | 1 +
2 files changed, 3 insertions(+)
diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.c
index dcf04fae0c59..2f87b7c1e28e 100644
--- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.c
+++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.c
@@ -38,6 +38,8 @@ static int mlxsw_sp_flower_parse_actions(struct mlxsw_sp *mlxsw_sp,
if (err)
return err;
break;
+ case FLOW_ACTION_HW_STATS_TYPE_DISABLED:
+ break;
default:
NL_SET_ERR_MSG_MOD(extack, "Unsupported action HW stats type");
return -EOPNOTSUPP;
diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index 79a0fda9b7bd..a5b50d8abc0a 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -159,6 +159,7 @@ enum flow_action_hw_stats_type {
FLOW_ACTION_HW_STATS_TYPE_ANY,
FLOW_ACTION_HW_STATS_TYPE_IMMEDIATE,
FLOW_ACTION_HW_STATS_TYPE_DELAYED,
+ FLOW_ACTION_HW_STATS_TYPE_DISABLED,
};
typedef void (*action_destr)(void *priv);
--
2.21.1
Powered by blists - more mailing lists