aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mlx5
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@FreeBSD.org>2019-10-02 11:01:05 +0000
committerHans Petter Selasky <hselasky@FreeBSD.org>2019-10-02 11:01:05 +0000
commit63dd1be931e5fb1c56c605c8018c6a03cd72c995 (patch)
tree17ce73a6de9b7f6422b7b5e73ee671c83a2812e5 /sys/dev/mlx5
parent7bf46a63ce25ae5c118691ad4b63806ce66c69a5 (diff)
downloadsrc-63dd1be931e5fb1c56c605c8018c6a03cd72c995.tar.gz
src-63dd1be931e5fb1c56c605c8018c6a03cd72c995.zip
Improve mlx5_fwdump_prep logging in mlx5core.
Submitted by: slavash@ MFC after: 3 days Sponsored by: Mellanox Technologies
Notes
Notes: svn path=/head/; revision=352994
Diffstat (limited to 'sys/dev/mlx5')
-rw-r--r--sys/dev/mlx5/mlx5_core/mlx5_fwdump.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c b/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
index bda73699f1f7..24e1a41de133 100644
--- a/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
+++ b/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
@@ -72,7 +72,8 @@ mlx5_fwdump_prep(struct mlx5_core_dev *mdev)
if (error != 0) {
/* Inability to create a firmware dump is not fatal. */
mlx5_core_warn(mdev,
- "mlx5_fwdump_prep failed %d\n", error);
+ "Failed to find vendor-specific capability, error %d\n",
+ error);
return;
}
error = mlx5_vsc_lock(mdev);
@@ -86,7 +87,7 @@ mlx5_fwdump_prep(struct mlx5_core_dev *mdev)
dev = mdev->pdev->dev.bsddev;
vsc_addr = mdev->vsc_addr;
if (vsc_addr == 0) {
- mlx5_core_warn(mdev, "Cannot read vsc, no address\n");
+ mlx5_core_warn(mdev, "Cannot read VSC, no address\n");
goto unlock_vsc;
}
@@ -97,7 +98,8 @@ mlx5_fwdump_prep(struct mlx5_core_dev *mdev)
error = mlx5_vsc_wait_on_flag(mdev, 1);
if (error != 0) {
mlx5_core_warn(mdev,
- "Failed waiting for read complete flag, error %d\n", error);
+ "Failed waiting for read complete flag, error %d addr %#x\n",
+ error, addr);
goto unlock_vsc;
}
pci_read_config(dev, vsc_addr + MLX5_VSC_DATA_OFFSET, 4);
@@ -120,7 +122,8 @@ mlx5_fwdump_prep(struct mlx5_core_dev *mdev)
error = mlx5_vsc_wait_on_flag(mdev, 1);
if (error != 0) {
mlx5_core_warn(mdev,
- "Failed waiting for read complete flag, error %d\n", error);
+ "Failed waiting for read complete flag, error %d addr %#x\n",
+ error, addr);
free(mdev->dump_rege, M_MLX5_DUMP);
mdev->dump_rege = NULL;
goto unlock_vsc;