mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 12:11:59 +02:00
net/mlx5: Fix typo reminder -> remainder
Fix a typo in esw_qos_devlink_rate_to_mbps(): reminder -> remainder. Signed-off-by: Gal Pressman <gal@nvidia.com> Reviewed-by: Rahul Rameshbabu <rrameshbabu@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
parent
a0ae00e71e
commit
58f6d9d044
|
|
@ -740,7 +740,7 @@ int mlx5_esw_qos_modify_vport_rate(struct mlx5_eswitch *esw, u16 vport_num, u32
|
|||
static int esw_qos_devlink_rate_to_mbps(struct mlx5_core_dev *mdev, const char *name,
|
||||
u64 *rate, struct netlink_ext_ack *extack)
|
||||
{
|
||||
u32 link_speed_max, reminder;
|
||||
u32 link_speed_max, remainder;
|
||||
u64 value;
|
||||
int err;
|
||||
|
||||
|
|
@ -750,8 +750,8 @@ static int esw_qos_devlink_rate_to_mbps(struct mlx5_core_dev *mdev, const char *
|
|||
return err;
|
||||
}
|
||||
|
||||
value = div_u64_rem(*rate, MLX5_LINKSPEED_UNIT, &reminder);
|
||||
if (reminder) {
|
||||
value = div_u64_rem(*rate, MLX5_LINKSPEED_UNIT, &remainder);
|
||||
if (remainder) {
|
||||
pr_err("%s rate value %lluBps not in link speed units of 1Mbps.\n",
|
||||
name, *rate);
|
||||
NL_SET_ERR_MSG_MOD(extack, "TX rate value not in link speed units of 1Mbps");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user