From 4ad58ea85b992aa3426ee3e306057e07e9f0ca06 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Wed, 18 Mar 2020 22:47:14 +0000 Subject: [PATCH] mlx5_core: lower the severity of message noting that no SR-IOV cap is present. Reviewed by: hselasky Sponsored by: Mellanox Technologies MFC after: 2 weeks --- sys/dev/mlx5/mlx5_core/mlx5_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mlx5/mlx5_core/mlx5_main.c b/sys/dev/mlx5/mlx5_core/mlx5_main.c index 0e560e16ab5..29751e9da21 100644 --- a/sys/dev/mlx5/mlx5_core/mlx5_main.c +++ b/sys/dev/mlx5/mlx5_core/mlx5_main.c @@ -1608,7 +1608,7 @@ static int init_one(struct pci_dev *pdev, num_vfs = pci_read_config(bsddev, sriov_pos + PCIR_SRIOV_TOTAL_VFS, 2); } else { - mlx5_core_err(dev, "cannot find SR-IOV PCIe cap\n"); + mlx5_core_info(dev, "cannot find SR-IOV PCIe cap\n"); num_vfs = 0; } err = mlx5_eswitch_init(dev, 1 + num_vfs);