]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
net/mlx5e: Use NL_SET_ERR_MSG_MOD() for errors parsing tunnel attributes
authorRoi Dayan <roid@nvidia.com>
Sun, 29 Aug 2021 08:25:45 +0000 (11:25 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Fri, 24 Sep 2021 18:46:55 +0000 (11:46 -0700)
This to be consistent and adds the module name to the error message.

Signed-off-by: Roi Dayan <roid@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c

index 9ee11715dd6b754bedafb3dbf51252c169380c36..07ab02f7b284799f5930e4fc0f21c02543089c8a 100644 (file)
@@ -1682,8 +1682,8 @@ enc_opts_is_dont_care_or_full_match(struct mlx5e_priv *priv,
 
                        if (opt->opt_class != htons(U16_MAX) ||
                            opt->type != U8_MAX) {
-                               NL_SET_ERR_MSG(extack,
-                                              "Partial match of tunnel options in chain > 0 isn't supported");
+                               NL_SET_ERR_MSG_MOD(extack,
+                                                  "Partial match of tunnel options in chain > 0 isn't supported");
                                netdev_warn(priv->netdev,
                                            "Partial match of tunnel options in chain > 0 isn't supported");
                                return -EOPNOTSUPP;
@@ -1899,8 +1899,8 @@ static int parse_tunnel_attr(struct mlx5e_priv *priv,
 
        if ((needs_mapping || sets_mapping) &&
            !mlx5_eswitch_reg_c1_loopback_enabled(esw)) {
-               NL_SET_ERR_MSG(extack,
-                              "Chains on tunnel devices isn't supported without register loopback support");
+               NL_SET_ERR_MSG_MOD(extack,
+                                  "Chains on tunnel devices isn't supported without register loopback support");
                netdev_warn(priv->netdev,
                            "Chains on tunnel devices isn't supported without register loopback support");
                return -EOPNOTSUPP;