diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-20 09:22:40 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-20 09:22:40 -0700 |
commit | ba5cad5145b11345fb195b79c806a02d9545bf0b (patch) | |
tree | bc6e3393ad75b04c9352539447436a537331a6c5 /templates/traffic-policy | |
parent | 97c6b53404e71fe1b6ccb617dafea346f8211ee4 (diff) | |
download | vyatta-cfg-qos-ba5cad5145b11345fb195b79c806a02d9545bf0b.tar.gz vyatta-cfg-qos-ba5cad5145b11345fb195b79c806a02d9545bf0b.zip |
Allow larger queue size for sub-queues in Shaper and RoundRobin
For queue-type (other than fair-queue), it is allowable to have larger queue size.
Move validation into class checking.
Diffstat (limited to 'templates/traffic-policy')
-rw-r--r-- | templates/traffic-policy/round-robin/node.tag/class/node.tag/queue-limit/node.def | 2 | ||||
-rw-r--r-- | templates/traffic-policy/shaper/node.tag/class/node.tag/queue-limit/node.def | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/traffic-policy/round-robin/node.tag/class/node.tag/queue-limit/node.def b/templates/traffic-policy/round-robin/node.tag/class/node.tag/queue-limit/node.def index 1d1d8eb..f7cf04f 100644 --- a/templates/traffic-policy/round-robin/node.tag/class/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/round-robin/node.tag/class/node.tag/queue-limit/node.def @@ -2,4 +2,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 1 && $VAR(@) < 128;\ "Queue limit must greater than 1 and less than 128" -val_help: u32:1-127; Queue size in bytes +val_help: u32:1-4294967295; Queue size in bytes diff --git a/templates/traffic-policy/shaper/node.tag/class/node.tag/queue-limit/node.def b/templates/traffic-policy/shaper/node.tag/class/node.tag/queue-limit/node.def index 1d1d8eb..f7cf04f 100644 --- a/templates/traffic-policy/shaper/node.tag/class/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/shaper/node.tag/class/node.tag/queue-limit/node.def @@ -2,4 +2,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 1 && $VAR(@) < 128;\ "Queue limit must greater than 1 and less than 128" -val_help: u32:1-127; Queue size in bytes +val_help: u32:1-4294967295; Queue size in bytes |