diff options
author | Christian Breunig <christian@breunig.cc> | 2023-06-14 21:30:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 21:30:17 +0200 |
commit | d115065c518d00ec8f16acd96796094aead092e2 (patch) | |
tree | bbb4c61b7591e49172738c532bce5c7503f23415 /python | |
parent | dd1cdc4ec18ef000f39228f773e1ceafc9fce766 (diff) | |
parent | fed4261d79a0ffb3780e9ed2fd3ccb524a248b7e (diff) | |
download | vyos-1x-d115065c518d00ec8f16acd96796094aead092e2.tar.gz vyos-1x-d115065c518d00ec8f16acd96796094aead092e2.zip |
Merge pull request #2041 from cuongdt1994/current
T5290: Failing commits for SR-IOV interfaces using ixgbevf driver due…
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ethtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: """ |