vdpa/mlx5: add logs

Add log prints to improve driver status following.

Signed-off-by: Matan Azrad <matan@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
This commit is contained in:
Matan Azrad 2020-03-24 14:24:37 +00:00 committed by Ferruh Yigit
parent f6f1f024b0
commit e60b10f260
2 changed files with 4 additions and 0 deletions

View File

@ -214,6 +214,7 @@ mlx5_vdpa_dev_close(int vid)
mlx5_vdpa_mem_dereg(priv);
priv->configured = 0;
priv->vid = 0;
DRV_LOG(INFO, "vDPA device %d was closed.", vid);
return ret;
}
@ -239,6 +240,7 @@ mlx5_vdpa_dev_config(int vid)
return -1;
}
priv->configured = 1;
DRV_LOG(INFO, "vDPA device %d was configured.", vid);
return 0;
}

View File

@ -123,6 +123,8 @@ mlx5_vdpa_virtq_enable(struct mlx5_vdpa_virtq *virtq, int enable)
struct mlx5_vdpa_priv *priv = virtq->priv;
int ret = 0;
DRV_LOG(INFO, "Update virtq %d status %sable -> %sable.", virtq->index,
virtq->enable ? "en" : "dis", enable ? "en" : "dis");
if (virtq->enable == !!enable)
return 0;
virtq->enable = !!enable;