From 40597c9b95d6c12d54ed4853840c23a794cd6122 Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Fri, 15 Jan 2021 17:35:03 +0100 Subject: [PATCH] test/nvmf: fix driver list for Mellanox ConnectX-4 CeonnectX-4 and X-5 share the same set of drivers. mlx4_* drivers were mistakenly added for ConnectX-4 while actually they're used by ConnectX-3. https://community.mellanox.com/s/article/mellanox-linux -driver-modules-relationship--mlnx-ofed-x Change-Id: I03de970fad6497c98a6873a25a5df66a0de8312c Signed-off-by: Karol Latecki Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5947 Reviewed-by: Aleksey Marchuk Reviewed-by: Tomasz Zawadzki Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins --- test/nvmf/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nvmf/common.sh b/test/nvmf/common.sh index 90e9d9ec6..3c6893796 100644 --- a/test/nvmf/common.sh +++ b/test/nvmf/common.sh @@ -77,7 +77,7 @@ function detect_pci_nics() { return 0 fi - detect_nics_and_probe_drivers "Mellanox" "ConnectX-4" "mlx4_core" "mlx4_ib" "mlx4_en" + detect_nics_and_probe_drivers "Mellanox" "ConnectX-4" "mlx5_core" "mlx5_ib" detect_nics_and_probe_drivers "Mellanox" "ConnectX-5" "mlx5_core" "mlx5_ib" detect_nics_and_probe_drivers "Intel" "X722" "i40e" "i40iw" detect_nics_and_probe_drivers "Chelsio" "Unified Wire" "cxgb4" "iw_cxgb4"