mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 15:06:46 +07:00
net/mlx4_core: Fix unintialized variable used in error path
The uninitialized value name in mlx4_en_activate_cq was used in order to print an error message. Fixing it by replacing it with cq->vector. Signed-off-by: Matan Barak <matanb@mellanox.com> Signed-off-by: Carol L Soto <clsoto@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9293267a3e
commit
b0f6446377
@ -100,7 +100,6 @@ int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
|
||||
{
|
||||
struct mlx4_en_dev *mdev = priv->mdev;
|
||||
int err = 0;
|
||||
char name[25];
|
||||
int timestamp_en = 0;
|
||||
bool assigned_eq = false;
|
||||
|
||||
@ -119,8 +118,8 @@ int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
|
||||
err = mlx4_assign_eq(mdev->dev, priv->port,
|
||||
&cq->vector);
|
||||
if (err) {
|
||||
mlx4_err(mdev, "Failed assigning an EQ to %s\n",
|
||||
name);
|
||||
mlx4_err(mdev, "Failed assigning an EQ to CQ vector %d\n",
|
||||
cq->vector);
|
||||
goto free_eq;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user