diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-12-20 15:22:05 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-12-20 15:22:05 +0100 |
commit | c8551d473b12c44b5bbb9d9e9d7921410eb55a5b (patch) | |
tree | 4eee4a744dcd749c00c64c4198191d6b50981d95 /interface-definitions | |
parent | d60288741aab884d5a44f431682dd22ab52eefcd (diff) | |
download | vyos-1x-c8551d473b12c44b5bbb9d9e9d7921410eb55a5b.tar.gz vyos-1x-c8551d473b12c44b5bbb9d9e9d7921410eb55a5b.zip |
ethernet: T3140: relax "ethernet offload-options" CLI definition
Migrate from
ethernet eth1 {
offload-options {
generic-receive on
generic-segmentation on
scatter-gather on
tcp-segmentation on
udp-fragmentation on
}
}
to
ethernet eth1 {
offload {
ufo
tso
sg
gso
gro
}
}
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-ethernet.xml.in | 102 |
1 files changed, 16 insertions, 86 deletions
diff --git a/interface-definitions/interfaces-ethernet.xml.in b/interface-definitions/interfaces-ethernet.xml.in index 8bd9b7010..d3d94cf8d 100644 --- a/interface-definitions/interfaces-ethernet.xml.in +++ b/interface-definitions/interfaces-ethernet.xml.in @@ -60,109 +60,39 @@ #include <include/interface-mac.xml.i> #include <include/interface-mtu-68-16000.xml.i> #include <include/interface-mirror.xml.i> - <node name="offload-options"> + <node name="offload"> <properties> <help>Configurable offload options</help> </properties> <children> - <leafNode name="generic-receive"> + <leafNode name="gro"> <properties> - <help>Configure GRO (generic receive offload)</help> - <completionHelp> - <list>on off</list> - </completionHelp> - <valueHelp> - <format>on</format> - <description>Enable GRO (generic receive offload)</description> - </valueHelp> - <valueHelp> - <format>off</format> - <description>Disable GRO (generic receive offload)</description> - </valueHelp> - <constraint> - <regex>(on|off)</regex> - </constraint> - <constraintErrorMessage>Must be either 'on' or 'off'</constraintErrorMessage> + <help>Enable Generic Receive Offload</help> + <valueless/> </properties> </leafNode> - <leafNode name="generic-segmentation"> + <leafNode name="gso"> <properties> - <help>Configure GSO (generic segmentation offload)</help> - <completionHelp> - <list>on off</list> - </completionHelp> - <valueHelp> - <format>on</format> - <description>Enable GSO (generic segmentation offload)</description> - </valueHelp> - <valueHelp> - <format>off</format> - <description>Disable GSO (generic segmentation offload)</description> - </valueHelp> - <constraint> - <regex>(on|off)</regex> - </constraint> - <constraintErrorMessage>Must be either 'on' or 'off'</constraintErrorMessage> + <help>Enable Generic Segmentation Offload</help> + <valueless/> </properties> </leafNode> - <leafNode name="scatter-gather"> + <leafNode name="sg"> <properties> - <help>Configure scatter-gather option</help> - <completionHelp> - <list>on off</list> - </completionHelp> - <valueHelp> - <format>on</format> - <description>Enable scatter-gather</description> - </valueHelp> - <valueHelp> - <format>off</format> - <description>Disable scatter-gather</description> - </valueHelp> - <constraint> - <regex>(on|off)</regex> - </constraint> - <constraintErrorMessage>Must be either 'on' or 'off'</constraintErrorMessage> + <help>Enable Scatter-Gather</help> + <valueless/> </properties> </leafNode> - <leafNode name="tcp-segmentation"> + <leafNode name="tso"> <properties> - <help>Configure TSO (TCP segmentation offloading)</help> - <completionHelp> - <list>on off</list> - </completionHelp> - <valueHelp> - <format>on</format> - <description>Enable TSO (TCP segmentation offloading)</description> - </valueHelp> - <valueHelp> - <format>off</format> - <description>Disable TSO (TCP segmentation offloading)</description> - </valueHelp> - <constraint> - <regex>(on|off)</regex> - </constraint> - <constraintErrorMessage>Must be either 'on' or 'off'</constraintErrorMessage> + <help>Enable TCP Segmentation Offloading</help> + <valueless/> </properties> </leafNode> - <leafNode name="udp-fragmentation"> + <leafNode name="ufo"> <properties> - <help>Configure UDP fragmentation offloading</help> - <completionHelp> - <list>on off</list> - </completionHelp> - <valueHelp> - <format>on</format> - <description>Enable UDP fragmentation offloading</description> - </valueHelp> - <valueHelp> - <format>off</format> - <description>Disable UDP fragmentation offloading</description> - </valueHelp> - <constraint> - <regex>(on|off)</regex> - </constraint> - <constraintErrorMessage>Must be either 'on' or 'off'</constraintErrorMessage> + <help>Enable UDP Fragmentation Offloading</help> + <valueless/> </properties> </leafNode> <leafNode name="xdp"> |