From fed4261d79a0ffb3780e9ed2fd3ccb524a248b7e Mon Sep 17 00:00:00 2001
From: cuongdt1994 <63875204+cuongdt1994@users.noreply.github.com>
Date: Wed, 14 Jun 2023 19:09:13 +0700
Subject: T5290: Failing commits for SR-IOV interfaces using ixgbevf driver due
 to change speed/duplex settings

This is the same problem as reported in T4297. By definition it is not possible to change speed and duplex settings at SR-IOV virtual functions driven by ixgbevf driver. I think the solution is the same as well, that is to add 'ixgbevf' into _drivers_without_speed_duplex_flow in /usr/lib/python3/dist-packages/vyos/ethtool.py. It fixed the problem for me with Intel x520 NICs.
---
 python/vyos/ethtool.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'python')

diff --git a/python/vyos/ethtool.py b/python/vyos/ethtool.py
index 1b1e54dfb..68234089c 100644
--- a/python/vyos/ethtool.py
+++ b/python/vyos/ethtool.py
@@ -21,7 +21,7 @@ from vyos.util import popen
 # These drivers do not support using ethtool to change the speed, duplex, or
 # flow control settings
 _drivers_without_speed_duplex_flow = ['vmxnet3', 'virtio_net', 'xen_netfront',
-                                      'iavf', 'ice', 'i40e', 'hv_netvsc', 'veth']
+                                      'iavf', 'ice', 'i40e', 'hv_netvsc', 'veth', 'ixgbevf']
 
 class Ethtool:
     """
-- 
cgit v1.2.3