OSDN Git Service

mlxsw: spectrum: Change ENOTSUPP to EOPNOTSUPP
authorYotam Gigi <yotamg@mellanox.com>
Mon, 9 Jan 2017 10:25:48 +0000 (11:25 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Jan 2017 19:35:14 +0000 (14:35 -0500)
As ENOTSUPP is specific to NFS, change the return error value to
EOPNOTSUPP in various places in the mlxsw driver.

Signed-off-by: Yotam Gigi <yotamg@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum.c

index 1f4fdce..d0e803f 100644 (file)
@@ -1193,7 +1193,7 @@ mlxsw_sp_port_add_cls_matchall_mirror(struct mlxsw_sp_port *mlxsw_sp_port,
 
        if (!mlxsw_sp_port_dev_check(to_dev)) {
                netdev_err(mlxsw_sp_port->dev, "Cannot mirror to a non-spectrum port");
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
        to_port = netdev_priv(to_dev);
 
@@ -1229,7 +1229,7 @@ static int mlxsw_sp_port_add_cls_matchall(struct mlxsw_sp_port *mlxsw_sp_port,
 
        if (!tc_single_action(cls->exts)) {
                netdev_err(mlxsw_sp_port->dev, "only singular actions are supported\n");
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
 
        mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
@@ -1309,7 +1309,7 @@ static int mlxsw_sp_setup_tc(struct net_device *dev, u32 handle,
                }
        }
 
-       return -ENOTSUPP;
+       return -EOPNOTSUPP;
 }
 
 static const struct net_device_ops mlxsw_sp_port_netdev_ops = {
@@ -1652,7 +1652,7 @@ mlxsw_sp_get_hw_stats_by_group(struct mlxsw_sp_port_hw_stats **p_hw_stats,
                break;
        default:
                WARN_ON(1);
-               return -ENOTSUPP;
+               return -EOPNOTSUPP;
        }
        return 0;
 }