diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-08-17 16:53:01 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-08-17 16:56:29 -0700 |
commit | baaee833507361b891601101b4faa4c5baaa3c41 (patch) | |
tree | b508f3811083497915b824eba8b4126e78f34884 | |
parent | ea6f7a6d862873c8357a96138995398a7a696922 (diff) | |
download | vyatta-cfg-qos-baaee833507361b891601101b4faa4c5baaa3c41.tar.gz vyatta-cfg-qos-baaee833507361b891601101b4faa4c5baaa3c41.zip |
Fix help message
Queue limit is in packets not bytes.
8 files changed, 9 insertions, 10 deletions
diff --git a/templates/traffic-policy/drop-tail/node.tag/queue-limit/node.def b/templates/traffic-policy/drop-tail/node.tag/queue-limit/node.def index 0932bd7..bf011c2 100644 --- a/templates/traffic-policy/drop-tail/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/drop-tail/node.tag/queue-limit/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 0 ; "queue limit must be greater than zero" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets diff --git a/templates/traffic-policy/fair-queue/node.tag/queue-limit/node.def b/templates/traffic-policy/fair-queue/node.tag/queue-limit/node.def index 1d1d8eb..b5981f7 100644 --- a/templates/traffic-policy/fair-queue/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/fair-queue/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-127; Queue size in packets diff --git a/templates/traffic-policy/network-emulator/node.tag/queue-limit/node.def b/templates/traffic-policy/network-emulator/node.tag/queue-limit/node.def index dd70472..69dcbe9 100644 --- a/templates/traffic-policy/network-emulator/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/network-emulator/node.tag/queue-limit/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 0; "Queue limit must be greater than zero" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets diff --git a/templates/traffic-policy/random-detect/node.tag/precedence/node.tag/queue-limit/node.def b/templates/traffic-policy/random-detect/node.tag/precedence/node.tag/queue-limit/node.def index b1dd909..e086deb 100644 --- a/templates/traffic-policy/random-detect/node.tag/precedence/node.tag/queue-limit/node.def +++ b/templates/traffic-policy/random-detect/node.tag/precedence/node.tag/queue-limit/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 0 ; "Queue limit must greater than zero" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets 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 29f7fea..1bc98b3 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(@) < 42494967295;\ "Queue limit must greater than 1 and less than 128" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets diff --git a/templates/traffic-policy/round-robin/node.tag/default/queue-limit/node.def b/templates/traffic-policy/round-robin/node.tag/default/queue-limit/node.def index b1dd909..e086deb 100644 --- a/templates/traffic-policy/round-robin/node.tag/default/queue-limit/node.def +++ b/templates/traffic-policy/round-robin/node.tag/default/queue-limit/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 0 ; "Queue limit must greater than zero" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets 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 f7cf04f..bf011c2 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 @@ -1,5 +1,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-4294967295; Queue size in bytes +syntax:expression: $VAR(@) > 0 ; "queue limit must be greater than zero" +val_help: u32:1-4294967295; Queue size in packets diff --git a/templates/traffic-policy/shaper/node.tag/default/queue-limit/node.def b/templates/traffic-policy/shaper/node.tag/default/queue-limit/node.def index 4d79afb..7b07913 100644 --- a/templates/traffic-policy/shaper/node.tag/default/queue-limit/node.def +++ b/templates/traffic-policy/shaper/node.tag/default/queue-limit/node.def @@ -1,4 +1,4 @@ type: u32 help: Maximum queue size (packets) syntax:expression: $VAR(@) > 0; "Queue limit must be greater than zero" -val_help: u32:1-4294967295; Queue size in bytes +val_help: u32:1-4294967295; Queue size in packets |