Add X710 to iavf driver NICs 74/120974/1
authorTodd Malsbary <todd.malsbary@intel.com>
Wed, 28 Apr 2021 19:39:01 +0000 (12:39 -0700)
committerTodd Malsbary <todd.malsbary@intel.com>
Wed, 28 Apr 2021 19:40:18 +0000 (12:40 -0700)
Issue-ID: MULTICLOUD-1336
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I7a0ee4302c020e6b7ec785d6a85af636b6a85ecc

kud/deployment_infra/playbooks/install_iavf_drivers.sh
kud/deployment_infra/playbooks/sriov_hardware_check.sh
kud/tests/topology-manager.sh

index 7a54e9f..dd01b06 100755 (executable)
@@ -3,7 +3,7 @@
 # Based on:
 # https://gerrit.akraino.org/r/#/c/icn/+/1359/1/deploy/kud-plugin-addons/device-plugins/sriov/driver/install_iavf_drivers.sh
 
-nic_models=(XL710 X722)
+nic_models=(X710 XL710 X722)
 nic_drivers=(i40e)
 device_checkers=(is_not_used is_driver_match is_model_match)
 
index 662c28c..980fef6 100644 (file)
@@ -12,14 +12,8 @@ set -o pipefail
 
 source /etc/environment
 
-ethernet_adpator_version=$( lspci | grep "Ethernet Controller XL710" | head -n 1 | cut -d " " -f 8 )
-if [ -z "$ethernet_adpator_version" ]; then
-    echo "False"
-    exit 0
-fi
-SRIOV_ENABLED=${ethernet_adpator_version:-"false"}
-#checking for the right hardware version of NIC on the machine
-if [ "$ethernet_adpator_version" == "XL710" ]; then
+adaptors="X710 XL710 X722"
+if [[ $(lspci | grep -c "Ethernet .* \(${adaptors// /\\|}\)") != "0" ]]; then
     echo "True"
 else
     echo "False"
index 7d43438..5c9f900 100755 (executable)
@@ -15,7 +15,8 @@ set -o pipefail
 source _common.sh
 source _functions.sh
 
-if [ -z "$( lspci | grep "Ethernet Controller XL710" | head -n 1 | cut -d " " -f 8 )" ]; then
+adaptors="X710 XL710 X722"
+if [[ $(lspci | grep -c "Ethernet .* \(${adaptors// /\\|}\)") == "0" ]]; then
     echo "Ethernet adaptor version is not set. Topology manager test case cannot run on this machine"
     exit 0
 else