diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-02-15 13:13:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-15 13:13:12 +0100 |
| commit | 82461ce7856aaf91d1b8a85ca45080e26783fc5e (patch) | |
| tree | 917eb28ab3f34a0abe4a6bf9c4bf7cd0902934fb /interface-definitions | |
| parent | 4cc7959877a75bf01231aeec6dfd8c3b93660ba1 (diff) | |
| parent | c536954a6a666f59185669cffa9efa79a601673c (diff) | |
| download | vyos-1x-82461ce7856aaf91d1b8a85ca45080e26783fc5e.tar.gz vyos-1x-82461ce7856aaf91d1b8a85ca45080e26783fc5e.zip | |
Merge pull request #4986 from alexandr-san4ez/T8258-current
vpp: T8258: Move `poll-sleep-usec` out of `unix` section
Diffstat (limited to 'interface-definitions')
| -rw-r--r-- | interface-definitions/vpp.xml.in | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/interface-definitions/vpp.xml.in b/interface-definitions/vpp.xml.in index b431560d6..70e3e102c 100644 --- a/interface-definitions/vpp.xml.in +++ b/interface-definitions/vpp.xml.in @@ -891,26 +891,19 @@ </leafNode> </children> </node> - <node name="unix"> + <leafNode name="poll-sleep-usec"> <properties> - <help>Unix settings</help> + <help>Add a fixed-sleep between main loop poll</help> + <valueHelp> + <format>u32:0-500000</format> + <description>Sleep interval in microseconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-500000"/> + </constraint> </properties> - <children> - <leafNode name="poll-sleep-usec"> - <properties> - <help>Add a fixed-sleep between main loop poll</help> - <valueHelp> - <format>u32:0-500000</format> - <description>Sleep interval in microseconds</description> - </valueHelp> - <constraint> - <validator name="numeric" argument="--range 0-500000"/> - </constraint> - </properties> - <defaultValue>0</defaultValue> - </leafNode> - </children> - </node> + <defaultValue>0</defaultValue> + </leafNode> </children> </node> <node name="sflow" owner="${vyos_conf_scripts_dir}/vpp_sflow.py"> |
