net/sched: tc_mirred: Rename public predicates 'is_tcf_mirred_redirect' and 'is_tcf_m...
authorShmulik Ladkani <shmulik.ladkani@gmail.com>
Thu, 13 Oct 2016 06:06:43 +0000 (09:06 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 14 Oct 2016 14:23:06 +0000 (10:23 -0400)
These accessors are used in various drivers that support tc offloading,
to detect properties of a given 'tc_action'.

'is_tcf_mirred_redirect' tests that the action is TCA_EGRESS_REDIR.
'is_tcf_mirred_mirror' tests that the action is TCA_EGRESS_MIRROR.

As a prep towards supporting INGRESS redir/mirror, rename these
predicates to reflect their true meaning:
  s/is_tcf_mirred_redirect/is_tcf_mirred_egress_redirect/
  s/is_tcf_mirred_mirror/is_tcf_mirred_egress_mirror/

Signed-off-by: Shmulik Ladkani <shmulik.ladkani@gmail.com>
Cc: Hariprasad S <hariprasad@chelsio.com>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Cc: Saeed Mahameed <saeedm@mellanox.com>
Cc: Jiri Pirko <jiri@mellanox.com>
Cc: Ido Schimmel <idosch@mellanox.com>
Cc: Jakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.c
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
drivers/net/ethernet/mellanox/mlxsw/spectrum.c
drivers/net/ethernet/netronome/nfp/nfp_net_offload.c
include/net/tc_act/tc_mirred.h

index 49d2debb334e8e56f9544559f28001259e1b74c1..52af62e0ecb6bf01cdeffa0efc15e9870c134de2 100644 (file)
@@ -113,7 +113,7 @@ static int fill_action_fields(struct adapter *adap,
                }
 
                /* Re-direct to specified port in hardware. */
-               if (is_tcf_mirred_redirect(a)) {
+               if (is_tcf_mirred_egress_redirect(a)) {
                        struct net_device *n_dev;
                        unsigned int i, index;
                        bool found = false;
index a244d9a67264cc49a6c7bfb8ff6f9af44a22839c..784b0b98ab2fe0ca22b59d0e018089ceb7a93473 100644 (file)
@@ -8410,7 +8410,7 @@ static int parse_tc_actions(struct ixgbe_adapter *adapter,
                }
 
                /* Redirect to a VF or a offloaded macvlan */
-               if (is_tcf_mirred_redirect(a)) {
+               if (is_tcf_mirred_egress_redirect(a)) {
                        int ifindex = tcf_mirred_ifindex(a);
 
                        err = handle_redirect_action(adapter, ifindex, queue,
index ce8c54d18906bedc57f0bdd8353e1f2156d47ce7..135a95bcc3929d81b236cebd2c8f574275f99040 100644 (file)
@@ -404,7 +404,7 @@ static int parse_tc_fdb_actions(struct mlx5e_priv *priv, struct tcf_exts *exts,
                        continue;
                }
 
-               if (is_tcf_mirred_redirect(a)) {
+               if (is_tcf_mirred_egress_redirect(a)) {
                        int ifindex = tcf_mirred_ifindex(a);
                        struct net_device *out_dev;
                        struct mlx5e_priv *out_priv;
index 1ec0a4ce3c46edddc4fc0d63e67706d6459e10f3..43a5eddc2c117a4703d2e9146b3a26f35dbd44a9 100644 (file)
@@ -1237,8 +1237,10 @@ static int mlxsw_sp_port_add_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port,
 
        tcf_exts_to_list(cls->exts, &actions);
        list_for_each_entry(a, &actions, list) {
-               if (!is_tcf_mirred_mirror(a) || protocol != htons(ETH_P_ALL))
+               if (!is_tcf_mirred_egress_mirror(a) ||
+                   protocol != htons(ETH_P_ALL)) {
                        return -ENOTSUPP;
+               }
 
                err = mlxsw_sp_port_add_cls_matchall_mirror(mlxsw_sp_port, cls,
                                                            a, ingress);
index 8acfb631a0eae4595ce9c17cfa1fa7d46286f221..cfed40c0e310aaacb524202141a808db944caa48 100644 (file)
@@ -128,7 +128,7 @@ nfp_net_bpf_get_act(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf)
                if (is_tcf_gact_shot(a))
                        return NN_ACT_TC_DROP;
 
-               if (is_tcf_mirred_redirect(a) &&
+               if (is_tcf_mirred_egress_redirect(a) &&
                    tcf_mirred_ifindex(a) == nn->netdev->ifindex)
                        return NN_ACT_TC_REDIR;
        }
index 95431092c4b65966ed88259623f80ca447c00435..604bc31e23ab1ebc20ddaaa8fa7a94aaf1857281 100644 (file)
@@ -14,7 +14,7 @@ struct tcf_mirred {
 };
 #define to_mirred(a) ((struct tcf_mirred *)a)
 
-static inline bool is_tcf_mirred_redirect(const struct tc_action *a)
+static inline bool is_tcf_mirred_egress_redirect(const struct tc_action *a)
 {
 #ifdef CONFIG_NET_CLS_ACT
        if (a->ops && a->ops->type == TCA_ACT_MIRRED)
@@ -23,7 +23,7 @@ static inline bool is_tcf_mirred_redirect(const struct tc_action *a)
        return false;
 }
 
-static inline bool is_tcf_mirred_mirror(const struct tc_action *a)
+static inline bool is_tcf_mirred_egress_mirror(const struct tc_action *a)
 {
 #ifdef CONFIG_NET_CLS_ACT
        if (a->ops && a->ops->type == TCA_ACT_MIRRED)