From a1ae05bb3fad530ca7e2f80861e6e59c1dd60e14 Mon Sep 17 00:00:00 2001 From: Alexey Marchuk Date: Mon, 13 Mar 2023 09:40:17 +0100 Subject: [PATCH] test/nvmf: Add more Nvidia NIC IDs Even though these NICs are not used by Community CI, all tests fail if to run on a system with CX6 Dx, CX7, BF2 and BF3. Signed-off-by: Alexey Marchuk Change-Id: I23aaf8ddbc5b165f0a4372108d1f4b34f0b2ccf7 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17166 Reviewed-by: Shuhei Matsumoto Reviewed-by: Karol Latecki Reviewed-by: Ben Walker Reviewed-by: Jim Harris Tested-by: SPDK CI Jenkins --- test/nvmf/common.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/nvmf/common.sh b/test/nvmf/common.sh index 75dab74fc..1cf45b2b2 100644 --- a/test/nvmf/common.sh +++ b/test/nvmf/common.sh @@ -1,5 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright (C) 2016 Intel Corporation +# Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES # All rights reserved. # @@ -293,6 +294,14 @@ function gather_supported_nvmf_pci_devs() { e810+=(${pci_bus_cache["$intel:0x159b"]}) # X722 10G x722+=(${pci_bus_cache["$intel:0x37d2"]}) + # BlueField 3 + mlx+=(${pci_bus_cache["$mellanox:0xa2dc"]}) + # ConnectX-7 + mlx+=(${pci_bus_cache["$mellanox:0x1021"]}) + # BlueField 2 + mlx+=(${pci_bus_cache["$mellanox:0xa2d6"]}) + # ConnectX-6 Dx + mlx+=(${pci_bus_cache["$mellanox:0x101d"]}) # ConnectX-5 mlx+=(${pci_bus_cache["$mellanox:0x1017"]}) mlx+=(${pci_bus_cache["$mellanox:0x1019"]})