diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-15 13:37:32 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-15 13:37:32 -0700 |
commit | 0654461530daf65ae79d40b54399eae3183a3062 (patch) | |
tree | 5dd82fd219d9762896e172a903431ba018b2ca49 /lib/Vyatta/Qos/RoundRobin.pm | |
parent | f6055d71f7cb7c2fb99b770982e498959a57c5af (diff) | |
parent | 37b40196e9b647b665b53c3ffd6d8535cbd5d880 (diff) | |
download | vyatta-cfg-qos-0654461530daf65ae79d40b54399eae3183a3062.tar.gz vyatta-cfg-qos-0654461530daf65ae79d40b54399eae3183a3062.zip |
Merge branch 'larkspur' of vm:git/vyatta-cfg-qos into larkspur
Diffstat (limited to 'lib/Vyatta/Qos/RoundRobin.pm')
-rw-r--r-- | lib/Vyatta/Qos/RoundRobin.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/RoundRobin.pm b/lib/Vyatta/Qos/RoundRobin.pm index a1d7787..b7d72b2 100644 --- a/lib/Vyatta/Qos/RoundRobin.pm +++ b/lib/Vyatta/Qos/RoundRobin.pm @@ -67,8 +67,10 @@ sub commands { foreach my $class (@$classes) { $class->gen_class( $dev, 'drr', $parent ); $class->gen_leaf( $dev, $parent ); + my $prio = 1; + foreach my $match ( $class->matchRules() ) { - $match->filter( $dev, $parent, $class->{id}, 1); + $match->filter( $dev, $parent, $class->{id}, $prio++); } } } |