The branch main has been updated by gbe:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=84e3ffac12a8dcfeae0a5e0b25afe447ff2d5fa8

commit 84e3ffac12a8dcfeae0a5e0b25afe447ff2d5fa8
Author:     Gordon Bergling <g...@freebsd.org>
AuthorDate: 2025-02-05 10:31:12 +0000
Commit:     Gordon Bergling <g...@freebsd.org>
CommitDate: 2025-02-05 10:31:12 +0000

    mlx4ib(4): Fix some typos in device messages
    
    - s/availible/available/
    
    MFC after:      5 days
---
 sys/dev/mlx4/mlx4_core/mlx4_cmd.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys/dev/mlx4/mlx4_core/mlx4_cmd.c 
b/sys/dev/mlx4/mlx4_core/mlx4_cmd.c
index 45d06104448d..54256ab1e124 100644
--- a/sys/dev/mlx4/mlx4_core/mlx4_cmd.c
+++ b/sys/dev/mlx4/mlx4_core/mlx4_cmd.c
@@ -1960,7 +1960,7 @@ static void mlx4_allocate_port_vpps(struct mlx4_dev *dev, 
int port)
 
        err = mlx4_ALLOCATE_VPP_get(dev, port, &availible_vpp, vpp_param);
        if (err) {
-               mlx4_info(dev, "Failed query availible VPPs\n");
+               mlx4_info(dev, "Failed query available VPPs\n");
                return;
        }
 
@@ -1982,12 +1982,12 @@ static void mlx4_allocate_port_vpps(struct mlx4_dev 
*dev, int port)
        /* Query actual allocated VPP, just to make sure */
        err = mlx4_ALLOCATE_VPP_get(dev, port, &availible_vpp, vpp_param);
        if (err) {
-               mlx4_info(dev, "Failed query availible VPPs\n");
+               mlx4_info(dev, "Failed query available VPPs\n");
                return;
        }
 
        port_qos->num_of_qos_vfs = num_vfs;
-       mlx4_dbg(dev, "Port %d Availible VPPs %d\n", port, availible_vpp);
+       mlx4_dbg(dev, "Port %d Available VPPs %d\n", port, availible_vpp);
 
        for (i = 0; i < MLX4_NUM_UP; i++)
                mlx4_dbg(dev, "Port %d UP %d Allocated %d VPPs\n", port, i,
@@ -2884,7 +2884,7 @@ static int mlx4_set_vport_qos(struct mlx4_priv *priv, int 
slave, int port,
        memset(vpp_qos, 0, sizeof(struct mlx4_vport_qos_param) * MLX4_NUM_UP);
 
        if (slave > port_qos->num_of_qos_vfs) {
-               mlx4_info(dev, "No availible VPP resources for this VF\n");
+               mlx4_info(dev, "No available VPP resources for this VF\n");
                return -EINVAL;
        }
 

Reply via email to