net: sched: use newly added classid identity helpers
authorJiri Pirko <jiri@mellanox.com>
Wed, 9 Aug 2017 12:30:33 +0000 (14:30 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 11 Aug 2017 20:47:01 +0000 (13:47 -0700)
Instead of checking handle, which does not have the inner class
information and drivers wrongly assume clsact->egress as ingress, use
the newly introduced classid identification helpers.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
drivers/net/ethernet/mellanox/mlx5/core/en_main.c
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
drivers/net/ethernet/mellanox/mlxsw/spectrum.c
drivers/net/ethernet/netronome/nfp/bpf/main.c
drivers/net/ethernet/netronome/nfp/flower/offload.c
net/dsa/slave.c

index d80b20d..afa6fd6 100644 (file)
@@ -2892,7 +2892,7 @@ static int cxgb_set_tx_maxrate(struct net_device *dev, int index, u32 rate)
 static int cxgb_setup_tc_cls_u32(struct net_device *dev,
                                 struct tc_cls_u32_offload *cls_u32)
 {
-       if (TC_H_MAJ(cls_u32->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+       if (is_classid_clsact_ingress(cls_u32->common.classid) ||
            cls_u32->common.chain_index)
                return -EOPNOTSUPP;
 
index c6b1324..f9fd8d8 100644 (file)
@@ -9230,7 +9230,7 @@ static int ixgbe_setup_tc_cls_u32(struct net_device *dev,
 {
        struct ixgbe_adapter *adapter = netdev_priv(dev);
 
-       if (TC_H_MAJ(cls_u32->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+       if (is_classid_clsact_ingress(cls_u32->common.classid) ||
            cls_u32->common.chain_index)
                return -EOPNOTSUPP;
 
index 981f841..8633ca5 100644 (file)
@@ -3031,7 +3031,7 @@ static int mlx5e_setup_tc_cls_flower(struct net_device *dev,
 {
        struct mlx5e_priv *priv = netdev_priv(dev);
 
-       if (TC_H_MAJ(cls_flower->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+       if (is_classid_clsact_ingress(cls_flower->common.classid) ||
            cls_flower->common.chain_index)
                return -EOPNOTSUPP;
 
index f3c494a..f34c00f 100644 (file)
@@ -657,7 +657,7 @@ mlx5e_rep_setup_tc_cls_flower(struct net_device *dev,
 {
        struct mlx5e_priv *priv = netdev_priv(dev);
 
-       if (TC_H_MAJ(cls_flower->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+       if (is_classid_clsact_ingress(cls_flower->common.classid) ||
            cls_flower->common.chain_index)
                return -EOPNOTSUPP;
 
index eb7c454..a996003 100644 (file)
@@ -1696,7 +1696,14 @@ static void mlxsw_sp_port_del_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port,
 static int mlxsw_sp_setup_tc_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port,
                                          struct tc_cls_matchall_offload *f)
 {
-       bool ingress = TC_H_MAJ(f->common.handle) == TC_H_MAJ(TC_H_INGRESS);
+       bool ingress;
+
+       if (is_classid_clsact_ingress(f->common.classid))
+               ingress = true;
+       else if (is_classid_clsact_egress(f->common.classid))
+               ingress = false;
+       else
+               return -EOPNOTSUPP;
 
        if (f->common.chain_index)
                return -EOPNOTSUPP;
@@ -1717,7 +1724,14 @@ static int
 mlxsw_sp_setup_tc_cls_flower(struct mlxsw_sp_port *mlxsw_sp_port,
                             struct tc_cls_flower_offload *f)
 {
-       bool ingress = TC_H_MAJ(f->common.handle) == TC_H_MAJ(TC_H_INGRESS);
+       bool ingress;
+
+       if (is_classid_clsact_ingress(f->common.classid))
+               ingress = true;
+       else if (is_classid_clsact_egress(f->common.classid))
+               ingress = false;
+       else
+               return -EOPNOTSUPP;
 
        if (f->common.chain_index)
                return -EOPNOTSUPP;
index f981f60..0e68649 100644 (file)
@@ -127,7 +127,7 @@ static int nfp_bpf_setup_tc(struct nfp_app *app, struct net_device *netdev,
        struct nfp_net *nn = netdev_priv(netdev);
 
        if (type != TC_SETUP_CLSBPF || !nfp_net_ebpf_capable(nn) ||
-           TC_H_MAJ(cls_bpf->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+           is_classid_clsact_ingress(cls_bpf->common.classid) ||
            cls_bpf->common.protocol != htons(ETH_P_ALL) ||
            cls_bpf->common.chain_index)
                return -EOPNOTSUPP;
index 01767c7..3ad5aaa 100644 (file)
@@ -390,7 +390,7 @@ int nfp_flower_setup_tc(struct nfp_app *app, struct net_device *netdev,
        struct tc_cls_flower_offload *cls_flower = type_data;
 
        if (type != TC_SETUP_CLSFLOWER ||
-           TC_H_MAJ(cls_flower->common.handle) != TC_H_MAJ(TC_H_INGRESS) ||
+           is_classid_clsact_ingress(cls_flower->common.classid) ||
            !eth_proto_is_802_3(cls_flower->common.protocol) ||
            cls_flower->common.chain_index)
                return -EOPNOTSUPP;
index 8c79011..78e78a6 100644 (file)
@@ -914,7 +914,14 @@ static void dsa_slave_del_cls_matchall(struct net_device *dev,
 static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
                                           struct tc_cls_matchall_offload *cls)
 {
-       bool ingress = TC_H_MAJ(cls->common.handle) == TC_H_MAJ(TC_H_INGRESS);
+       bool ingress;
+
+       if (is_classid_clsact_ingress(cls->common.classid))
+               ingress = true;
+       else if (is_classid_clsact_egress(cls->common.classid))
+               ingress = false;
+       else
+               return -EOPNOTSUPP;
 
        if (cls->common.chain_index)
                return -EOPNOTSUPP;