diff mbox series

[next] net/mlx5e: Fix spelling mistake "supoported" -> "supported"

Message ID 20220131084317.8058-1-colin.i.king@gmail.com (mailing list archive)
State Awaiting Upstream
Delegated to: Netdev Maintainers
Headers show
Series [next] net/mlx5e: Fix spelling mistake "supoported" -> "supported" | expand

Checks

Context Check Description
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers warning 1 maintainers not CCed: colin.king@intel.com
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/checkpatch warning WARNING: line length of 84 exceeds 80 columns
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/tree_selection success Guessing tree name failed - patch did not apply

Commit Message

Colin Ian King Jan. 31, 2022, 8:43 a.m. UTC
There is a spelling mistake in a NL_SET_ERR_MSG_MOD error
message.  Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Roi Dayan Feb. 1, 2022, 7:43 a.m. UTC | #1
On 2022-01-31 10:43 AM, Colin Ian King wrote:
> There is a spelling mistake in a NL_SET_ERR_MSG_MOD error
> message.  Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>   drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
> index 85f0cb88127f..9fb1a9a8bc02 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
> @@ -21,7 +21,7 @@ tc_act_can_offload_ct(struct mlx5e_tc_act_parse_state *parse_state,
>   	}
>   
>   	if (parse_state->ct && !clear_action) {
> -		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supoported");
> +		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supported");
>   		return false;
>   	}
>   

thanks
you can add a fixes line if needed

Fixes: fd7ab32d19b6 ("net/mlx5e: TC, Reject rules with multiple CT actions")


Reviewed-by: Roi Dayan <roid@nvidia.com>
Saeed Mahameed Feb. 2, 2022, 4:31 a.m. UTC | #2
On 01 Feb 09:43, Roi Dayan wrote:
>
>
>On 2022-01-31 10:43 AM, Colin Ian King wrote:
>>There is a spelling mistake in a NL_SET_ERR_MSG_MOD error
>>message.  Fix it.
>>
>>Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
>>---
>>  drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>>diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
>>index 85f0cb88127f..9fb1a9a8bc02 100644
>>--- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
>>+++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
>>@@ -21,7 +21,7 @@ tc_act_can_offload_ct(struct mlx5e_tc_act_parse_state *parse_state,
>>  	}
>>  	if (parse_state->ct && !clear_action) {
>>-		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supoported");
>>+		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supported");
>>  		return false;
>>  	}
>
>thanks
>you can add a fixes line if needed
>
>Fixes: fd7ab32d19b6 ("net/mlx5e: TC, Reject rules with multiple CT actions")
>

wrong hash,

this is the correct one:
Fixes: 3b49a7edec1d ("net/mlx5e: TC, Reject rules with multiple CT actions")


>
>Reviewed-by: Roi Dayan <roid@nvidia.com>

Applied to net-next-mlx5
diff mbox series

Patch

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
index 85f0cb88127f..9fb1a9a8bc02 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c
@@ -21,7 +21,7 @@  tc_act_can_offload_ct(struct mlx5e_tc_act_parse_state *parse_state,
 	}
 
 	if (parse_state->ct && !clear_action) {
-		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supoported");
+		NL_SET_ERR_MSG_MOD(extack, "Multiple CT actions are not supported");
 		return false;
 	}