svn commit: r355542 - stable/12/sys/dev/mlx5/mlx5_core
Konstantin Belousov
kib at FreeBSD.org
Mon Dec 9 00:42:13 UTC 2019
Author: kib
Date: Mon Dec 9 00:42:12 2019
New Revision: 355542
URL: https://svnweb.freebsd.org/changeset/base/355542
Log:
MFC r355287:
mlx5: Downgrade assert about misbehaving hardware to error message.
Modified:
stable/12/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c
==============================================================================
--- stable/12/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c Mon Dec 9 00:34:34 2019 (r355541)
+++ stable/12/sys/dev/mlx5/mlx5_core/mlx5_fwdump.c Mon Dec 9 00:42:12 2019 (r355542)
@@ -137,9 +137,11 @@ mlx5_fwdump_prep(struct mlx5_core_dev *mdev)
mdev->dump_rege[++i].addr = next_addr;
addr = next_addr;
}
- KASSERT(i + 1 == sz,
- ("inconsistent hw crspace reads: sz %u i %u addr %#lx",
- sz, i, (unsigned long)addr));
+ if (i + 1 != sz) {
+ mlx5_core_err(mdev,
+ "Inconsistent hw crspace reads: sz %u i %u addr %#lx",
+ sz, i, (unsigned long)addr);
+ }
mdev->dump_size = mlx5_fwdump_getsize(mdev->dump_rege);
mdev->dump_data = malloc(mdev->dump_size * sizeof(uint32_t),
More information about the svn-src-stable
mailing list