aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
diff options
context:
space:
mode:
authorChris Mi <chrism@mellanox.com>2017-08-18 07:24:20 -0400
committerDavid S. Miller <davem@davemloft.net>2017-08-18 10:29:04 -0700
commit7f3b39dafc6234dc1565fafe6adb15a6c4932182 (patch)
treee299a94f8873ef053e38e29f2d6306a6d96653cb /drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
parentMerge branch 's390-qeth-next' (diff)
downloadlinux-dev-7f3b39dafc6234dc1565fafe6adb15a6c4932182.tar.xz
linux-dev-7f3b39dafc6234dc1565fafe6adb15a6c4932182.zip
net/sched: Fix the logic error to decide the ingress qdisc
The offending commit used a newly added helper function. But the logic is wrong. Without this fix, the affected NICs can't do HW offload. Error -EOPNOTSUPP will be returned directly. Fixes: a2e8da9378cc ("net/sched: use newly added classid identity helpers") Signed-off-by: Chris Mi <chrism@mellanox.com> Acked-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx5/core/en_rep.c')
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/en_rep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
index f34c00fbf78c..7a9f53f74976 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
@@ -657,7 +657,7 @@ mlx5e_rep_setup_tc_cls_flower(struct net_device *dev,
{
struct mlx5e_priv *priv = netdev_priv(dev);
- if (is_classid_clsact_ingress(cls_flower->common.classid) ||
+ if (!is_classid_clsact_ingress(cls_flower->common.classid) ||
cls_flower->common.chain_index)
return -EOPNOTSUPP;