Commit 3bcc0cec authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller

net: sched: change names of action number helpers to be aligned with the rest

The rest of the helpers are named tcf_exts_*, so change the name of
the action number helpers to be aligned. While at it, change to inline
functions.
Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Acked-by: default avatarJamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4ebc1e3c
...@@ -96,7 +96,7 @@ static int fill_action_fields(struct adapter *adap, ...@@ -96,7 +96,7 @@ static int fill_action_fields(struct adapter *adap,
LIST_HEAD(actions); LIST_HEAD(actions);
exts = cls->knode.exts; exts = cls->knode.exts;
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return -EINVAL; return -EINVAL;
tcf_exts_to_list(exts, &actions); tcf_exts_to_list(exts, &actions);
......
...@@ -8953,7 +8953,7 @@ static int parse_tc_actions(struct ixgbe_adapter *adapter, ...@@ -8953,7 +8953,7 @@ static int parse_tc_actions(struct ixgbe_adapter *adapter,
LIST_HEAD(actions); LIST_HEAD(actions);
int err; int err;
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return -EINVAL; return -EINVAL;
tcf_exts_to_list(exts, &actions); tcf_exts_to_list(exts, &actions);
......
...@@ -1326,7 +1326,7 @@ static int parse_tc_nic_actions(struct mlx5e_priv *priv, struct tcf_exts *exts, ...@@ -1326,7 +1326,7 @@ static int parse_tc_nic_actions(struct mlx5e_priv *priv, struct tcf_exts *exts,
LIST_HEAD(actions); LIST_HEAD(actions);
int err; int err;
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return -EINVAL; return -EINVAL;
attr->flow_tag = MLX5_FS_DEFAULT_FLOW_TAG; attr->flow_tag = MLX5_FS_DEFAULT_FLOW_TAG;
...@@ -1839,7 +1839,7 @@ static int parse_tc_fdb_actions(struct mlx5e_priv *priv, struct tcf_exts *exts, ...@@ -1839,7 +1839,7 @@ static int parse_tc_fdb_actions(struct mlx5e_priv *priv, struct tcf_exts *exts,
bool encap = false; bool encap = false;
int err = 0; int err = 0;
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return -EINVAL; return -EINVAL;
memset(attr, 0, sizeof(*attr)); memset(attr, 0, sizeof(*attr));
......
...@@ -1626,7 +1626,7 @@ static int mlxsw_sp_port_add_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port, ...@@ -1626,7 +1626,7 @@ static int mlxsw_sp_port_add_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port,
LIST_HEAD(actions); LIST_HEAD(actions);
int err; int err;
if (!tc_single_action(cls->exts)) { if (!tcf_exts_has_one_action(cls->exts)) {
netdev_err(mlxsw_sp_port->dev, "only singular actions are supported\n"); netdev_err(mlxsw_sp_port->dev, "only singular actions are supported\n");
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
......
...@@ -53,7 +53,7 @@ static int mlxsw_sp_flower_parse_actions(struct mlxsw_sp *mlxsw_sp, ...@@ -53,7 +53,7 @@ static int mlxsw_sp_flower_parse_actions(struct mlxsw_sp *mlxsw_sp,
LIST_HEAD(actions); LIST_HEAD(actions);
int err; int err;
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return 0; return 0;
/* Count action is inserted first */ /* Count action is inserted first */
......
...@@ -115,14 +115,14 @@ nfp_net_bpf_get_act(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf) ...@@ -115,14 +115,14 @@ nfp_net_bpf_get_act(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf)
/* TC direct action */ /* TC direct action */
if (cls_bpf->exts_integrated) { if (cls_bpf->exts_integrated) {
if (tc_no_actions(cls_bpf->exts)) if (!tcf_exts_has_actions(cls_bpf->exts))
return NN_ACT_DIRECT; return NN_ACT_DIRECT;
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
/* TC legacy mode */ /* TC legacy mode */
if (!tc_single_action(cls_bpf->exts)) if (!tcf_exts_has_one_action(cls_bpf->exts))
return -EOPNOTSUPP; return -EOPNOTSUPP;
tcf_exts_to_list(cls_bpf->exts, &actions); tcf_exts_to_list(cls_bpf->exts, &actions);
......
...@@ -199,17 +199,35 @@ tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts, ...@@ -199,17 +199,35 @@ tcf_exts_exec(struct sk_buff *skb, struct tcf_exts *exts,
return 0; return 0;
} }
/**
* tcf_exts_has_actions - check if at least one action is present
* @exts: tc filter extensions handle
*
* Returns true if at least one action is present.
*/
static inline bool tcf_exts_has_actions(struct tcf_exts *exts)
{
#ifdef CONFIG_NET_CLS_ACT #ifdef CONFIG_NET_CLS_ACT
return exts->nr_actions;
#else
return false;
#endif
}
#define tc_no_actions(_exts) ((_exts)->nr_actions == 0) /**
#define tc_single_action(_exts) ((_exts)->nr_actions == 1) * tcf_exts_has_one_action - check if exactly one action is present
* @exts: tc filter extensions handle
#else /* CONFIG_NET_CLS_ACT */ *
* Returns true if exactly one action is present.
#define tc_no_actions(_exts) true */
#define tc_single_action(_exts) false static inline bool tcf_exts_has_one_action(struct tcf_exts *exts)
{
#endif /* CONFIG_NET_CLS_ACT */ #ifdef CONFIG_NET_CLS_ACT
return exts->nr_actions == 1;
#else
return false;
#endif
}
int tcf_exts_validate(struct net *net, struct tcf_proto *tp, int tcf_exts_validate(struct net *net, struct tcf_proto *tp,
struct nlattr **tb, struct nlattr *rate_tlv, struct nlattr **tb, struct nlattr *rate_tlv,
......
...@@ -779,7 +779,7 @@ static int dsa_slave_add_cls_matchall(struct net_device *dev, ...@@ -779,7 +779,7 @@ static int dsa_slave_add_cls_matchall(struct net_device *dev,
if (!ds->ops->port_mirror_add) if (!ds->ops->port_mirror_add)
return err; return err;
if (!tc_single_action(cls->exts)) if (!tcf_exts_has_one_action(cls->exts))
return err; return err;
tcf_exts_to_list(cls->exts, &actions); tcf_exts_to_list(cls->exts, &actions);
......
...@@ -972,7 +972,7 @@ int tcf_exts_get_dev(struct net_device *dev, struct tcf_exts *exts, ...@@ -972,7 +972,7 @@ int tcf_exts_get_dev(struct net_device *dev, struct tcf_exts *exts,
const struct tc_action *a; const struct tc_action *a;
LIST_HEAD(actions); LIST_HEAD(actions);
if (tc_no_actions(exts)) if (!tcf_exts_has_actions(exts))
return -EINVAL; return -EINVAL;
tcf_exts_to_list(exts, &actions); tcf_exts_to_list(exts, &actions);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment