Commit 2dc768c0 authored by Cosmin Ratiu's avatar Cosmin Ratiu Committed by Paolo Abeni
Browse files

net/mlx5e: Trim the length of the num_doorbell error



When trying to set num_doorbells to a value greater than the max number
of channels, the error message was going over the netlink limit of 80
chars, truncating the most important part of the message, the number of
channels.

Fix that by trimming the length a bit.

Fixes: 11bbcfb7 ("net/mlx5e: Use the 'num_doorbells' devlink param")
Signed-off-by: default avatarCosmin Ratiu <cratiu@nvidia.com>
Reviewed-by: default avatarDragos Tatulea <dtatulea@nvidia.com>
Signed-off-by: default avatarTariq Toukan <tariqt@nvidia.com>
Link: https://patch.msgid.link/1762681073-1084058-3-git-send-email-tariqt@nvidia.com


Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent 0bcd5b3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -541,7 +541,7 @@ static int mlx5_devlink_num_doorbells_validate(struct devlink *devlink, u32 id,
	max_num_channels = mlx5e_get_max_num_channels(mdev);
	if (val32 > max_num_channels) {
		NL_SET_ERR_MSG_FMT_MOD(extack,
				       "Requested num_doorbells (%u) exceeds maximum number of channels (%u)",
				       "Requested num_doorbells (%u) exceeds max number of channels (%u)",
				       val32, max_num_channels);
		return -EINVAL;
	}