mlx5: Downgrade assert about misbehaving hardware to error message.

Sponsored by:	Mellanox Technologies
MFC after:	1 week
This commit is contained in:
kib 2019-12-02 14:21:40 +00:00
parent 9058714bd6
commit a850829d26

View File

@ -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),