diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-10 16:45:30 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-10 17:01:21 +0200 |
commit | cc313b32ef26141c2c027e8543f78da1231cada2 (patch) | |
tree | 10a9f39dde08d5b3167dae183b00ba3c171af073 /python/vyos/ethtool.py | |
parent | 310eb1b527047211ae236c6415fee51f15a0fa57 (diff) | |
download | vyos-1x-cc313b32ef26141c2c027e8543f78da1231cada2.tar.gz vyos-1x-cc313b32ef26141c2c027e8543f78da1231cada2.zip |
ethernet: T3802: check if driver supports changing flow-control settings
(cherry picked from commit 1572edd2cef355710d1129907d3e49451a6c31d4)
Diffstat (limited to 'python/vyos/ethtool.py')
-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 609d83b5e..7e46969cf 100644 --- a/python/vyos/ethtool.py +++ b/python/vyos/ethtool.py @@ -46,7 +46,7 @@ class Ethtool: _ring_buffers_max = { } _driver_name = None _auto_negotiation = None - _flow_control = None + _flow_control = False _flow_control_enabled = None def __init__(self, ifname): |