diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-23 08:35:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 08:35:16 +0100 |
commit | 20106f2e827ecfa9dc347d102fe809c736d17a48 (patch) | |
tree | d041c06f1181bec0a2d27817c1ddbd45a96e0c16 | |
parent | e2d46861092dedc18f6bd3c37736ac87cbfb5132 (diff) | |
parent | bfb7e4f2b3743ae3c9a132daf4e2109e90d27f26 (diff) | |
download | vyos-1x-20106f2e827ecfa9dc347d102fe809c736d17a48.tar.gz vyos-1x-20106f2e827ecfa9dc347d102fe809c736d17a48.zip |
Merge pull request #2881 from c-po/ethernet-gso-T5978
ethernet: T5978: hw-tc-offload does not actually get enabled on the NIC
-rw-r--r-- | python/vyos/ifconfig/ethernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/ethernet.py b/python/vyos/ifconfig/ethernet.py index dde87149d..c3f5bbf47 100644 --- a/python/vyos/ifconfig/ethernet.py +++ b/python/vyos/ifconfig/ethernet.py @@ -452,7 +452,7 @@ class EthernetIf(Interface): self.set_gso(dict_search('offload.gso', config) != None) # GSO (generic segmentation offload) - self.set_hw_tc_offload(dict_search('offload.hw-tc-offload', config) != None) + self.set_hw_tc_offload(dict_search('offload.hw_tc_offload', config) != None) # LRO (large receive offload) self.set_lro(dict_search('offload.lro', config) != None) |