* [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments
@ 2025-04-18 13:57 Colin Ian King
2025-04-18 19:04 ` Mark Bloch
2025-04-22 9:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2025-04-18 13:57 UTC (permalink / raw)
To: Saeed Mahameed, Leon Romanovsky, Tariq Toukan, Andrew Lunn,
David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
netdev, linux-rdma
Cc: kernel-janitors, linux-kernel
There is a spelling mistake in a mlx5_core_dbg and two spelling mistakes
in comment blocks. Fix them.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
index 2c5f850c31f6..40024cfa3099 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
@@ -148,7 +148,7 @@ int mlx5_set_msix_vec_count(struct mlx5_core_dev *dev, int function_id,
* Free the IRQ and other resources such as rmap from the system.
* BUT doesn't free or remove reference from mlx5.
* This function is very important for the shutdown flow, where we need to
- * cleanup system resoruces but keep mlx5 objects alive,
+ * cleanup system resources but keep mlx5 objects alive,
* see mlx5_irq_table_free_irqs().
*/
static void mlx5_system_free_irq(struct mlx5_irq *irq)
@@ -588,7 +588,7 @@ static void irq_pool_free(struct mlx5_irq_pool *pool)
struct mlx5_irq *irq;
unsigned long index;
- /* There are cases in which we are destrying the irq_table before
+ /* There are cases in which we are destroying the irq_table before
* freeing all the IRQs, fast teardown for example. Hence, free the irqs
* which might not have been freed.
*/
@@ -617,7 +617,7 @@ static int irq_pools_init(struct mlx5_core_dev *dev, int sf_vec, int pcif_vec,
if (!mlx5_sf_max_functions(dev))
return 0;
if (sf_vec < MLX5_IRQ_VEC_COMP_BASE_SF) {
- mlx5_core_dbg(dev, "Not enught IRQs for SFs. SF may run at lower performance\n");
+ mlx5_core_dbg(dev, "Not enough IRQs for SFs. SF may run at lower performance\n");
return 0;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments
2025-04-18 13:57 [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments Colin Ian King
@ 2025-04-18 19:04 ` Mark Bloch
2025-04-22 9:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Mark Bloch @ 2025-04-18 19:04 UTC (permalink / raw)
To: Colin Ian King, Saeed Mahameed, Leon Romanovsky, Tariq Toukan,
Andrew Lunn, David S . Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, netdev, linux-rdma
Cc: kernel-janitors, linux-kernel
On 18/04/2025 16:57, Colin Ian King wrote:
> There is a spelling mistake in a mlx5_core_dbg and two spelling mistakes
> in comment blocks. Fix them.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
> index 2c5f850c31f6..40024cfa3099 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
> @@ -148,7 +148,7 @@ int mlx5_set_msix_vec_count(struct mlx5_core_dev *dev, int function_id,
> * Free the IRQ and other resources such as rmap from the system.
> * BUT doesn't free or remove reference from mlx5.
> * This function is very important for the shutdown flow, where we need to
> - * cleanup system resoruces but keep mlx5 objects alive,
> + * cleanup system resources but keep mlx5 objects alive,
> * see mlx5_irq_table_free_irqs().
> */
> static void mlx5_system_free_irq(struct mlx5_irq *irq)
> @@ -588,7 +588,7 @@ static void irq_pool_free(struct mlx5_irq_pool *pool)
> struct mlx5_irq *irq;
> unsigned long index;
>
> - /* There are cases in which we are destrying the irq_table before
> + /* There are cases in which we are destroying the irq_table before
> * freeing all the IRQs, fast teardown for example. Hence, free the irqs
> * which might not have been freed.
> */
> @@ -617,7 +617,7 @@ static int irq_pools_init(struct mlx5_core_dev *dev, int sf_vec, int pcif_vec,
> if (!mlx5_sf_max_functions(dev))
> return 0;
> if (sf_vec < MLX5_IRQ_VEC_COMP_BASE_SF) {
> - mlx5_core_dbg(dev, "Not enught IRQs for SFs. SF may run at lower performance\n");
> + mlx5_core_dbg(dev, "Not enough IRQs for SFs. SF may run at lower performance\n");
> return 0;
> }
>
Acked-by: Mark Bloch <mbloch@nvidia.com>
Thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments
2025-04-18 13:57 [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments Colin Ian King
2025-04-18 19:04 ` Mark Bloch
@ 2025-04-22 9:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-04-22 9:10 UTC (permalink / raw)
To: Colin Ian King
Cc: saeedm, leon, tariqt, andrew+netdev, davem, edumazet, kuba,
pabeni, netdev, linux-rdma, kernel-janitors, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Fri, 18 Apr 2025 14:57:03 +0100 you wrote:
> There is a spelling mistake in a mlx5_core_dbg and two spelling mistakes
> in comment blocks. Fix them.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
Here is the summary with links:
- [next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments
https://git.kernel.org/netdev/net-next/c/1e3647321529
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-22 9:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-18 13:57 [PATCH][next] net/mlx5: Fix spelling mistakes in mlx5_core_dbg message and comments Colin Ian King
2025-04-18 19:04 ` Mark Bloch
2025-04-22 9:10 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox