diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2012-07-13 16:16:44 -0700 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2012-07-13 16:16:44 -0700 |
commit | 8f79b6c3cc2c2673db4329d64101bd9610b857c9 (patch) | |
tree | 768867d70c5a72dd1932cb97dbafd74c9ce3834f /scripts | |
parent | b6a0ad322e8e104db6e8e39aa741261dae264237 (diff) | |
download | vyatta-op-qos-8f79b6c3cc2c2673db4329d64101bd9610b857c9.tar.gz vyatta-op-qos-8f79b6c3cc2c2673db4329d64101bd9610b857c9.zip |
Show priority (versus limiter) correctly
With the addition of priority queue, need to show it correctly.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-show-queueing.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/vyatta-show-queueing.pl b/scripts/vyatta-show-queueing.pl index 4178c31..bbaa9f1 100755 --- a/scripts/vyatta-show-queueing.pl +++ b/scripts/vyatta-show-queueing.pl @@ -46,7 +46,8 @@ my %qdisc_types = ( 'prio' => 'priority-queue', 'netem' => 'network-emulator', 'gred' => 'weighted-random', - 'prio' => 'limiter', # XXX may be more in future + 'prio' => 'priority-queue', + 'ingress' => 'limiter', ); # Convert from kernel to vyatta nams |