net/mlx5e: Use NL_SET_ERR_MSG_MOD() for errors parsing tunnel attributes
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>
This commit is contained in:
parent
f3e02e479d
commit
c50775d0e2
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user