Patch "net/mlx5: Fix io_eq_size and event_eq_size params validation" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net/mlx5: Fix io_eq_size and event_eq_size params validation

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-mlx5-fix-io_eq_size-and-event_eq_size-params-val.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 70959495c683e8f537459f652731063084ada9da
Author: Shay Drory <shayd@xxxxxxxxxx>
Date:   Sun Dec 18 12:42:14 2022 +0200

    net/mlx5: Fix io_eq_size and event_eq_size params validation
    
    [ Upstream commit 44aee8ea15ac205490a41b00cbafcccbf9f7f82b ]
    
    io_eq_size and event_eq_size params are of param type
    DEVLINK_PARAM_TYPE_U32. But, the validation callback is addressing them
    as DEVLINK_PARAM_TYPE_U16.
    
    This cause mismatch in validation in big-endian systems, in which
    values in range were rejected while 268500991 was accepted.
    Fix it by checking the U32 value in the validation callback.
    
    Fixes: 0844fa5f7b89 ("net/mlx5: Let user configure io_eq_size param")
    Signed-off-by: Shay Drory <shayd@xxxxxxxxxx>
    Reviewed-by: Moshe Shemesh <moshe@xxxxxxxxxx>
    Signed-off-by: Saeed Mahameed <saeedm@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/devlink.c b/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
index 66c6a7017695..9e4e8d551884 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/devlink.c
@@ -563,7 +563,7 @@ static int mlx5_devlink_eq_depth_validate(struct devlink *devlink, u32 id,
 					  union devlink_param_value val,
 					  struct netlink_ext_ack *extack)
 {
-	return (val.vu16 >= 64 && val.vu16 <= 4096) ? 0 : -EINVAL;
+	return (val.vu32 >= 64 && val.vu32 <= 4096) ? 0 : -EINVAL;
 }
 
 static const struct devlink_param mlx5_devlink_params[] = {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux