2023-08-04 19:16:54

by Colin Ian King

[permalink] [raw]
Subject: [PATCH][next] net/mlx5e: Fix spelling mistake "Faided" -> "Failed"

There is a spelling mistake in a warning message. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c b/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
index 455746952260..095f31f380fa 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
@@ -316,7 +316,7 @@ void mlx5_esw_ipsec_restore_dest_uplink(struct mlx5_core_dev *mdev)
err = mlx5_esw_ipsec_modify_flow_dests(esw, flow);
if (err)
mlx5_core_warn_once(mdev,
- "Faided to modify flow dests for IPsec");
+ "Failed to modify flow dests for IPsec");
}
rhashtable_walk_stop(&iter);
rhashtable_walk_exit(&iter);
--
2.39.2



2023-08-04 21:23:40

by Rahul Rameshbabu

[permalink] [raw]
Subject: Re: [PATCH][next] net/mlx5e: Fix spelling mistake "Faided" -> "Failed"

On Fri, 04 Aug, 2023 19:23:06 +0100 Colin Ian King <[email protected]> wrote:
> There is a spelling mistake in a warning message. Fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c b/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
> index 455746952260..095f31f380fa 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/esw/ipsec_fs.c
> @@ -316,7 +316,7 @@ void mlx5_esw_ipsec_restore_dest_uplink(struct mlx5_core_dev *mdev)
> err = mlx5_esw_ipsec_modify_flow_dests(esw, flow);
> if (err)
> mlx5_core_warn_once(mdev,
> - "Faided to modify flow dests for IPsec");
> + "Failed to modify flow dests for IPsec");
> }
> rhashtable_walk_stop(&iter);
> rhashtable_walk_exit(&iter);

NOTE: This patch should be targeting net-next. There is no 'next' tree
to integrate into in netdev.

Reviewed-by: Rahul Rameshbabu <[email protected]>