diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-16 17:12:54 -0700 |
---|---|---|
committer | Stephen Hemminger <shemminger@lenny.localdomain> | 2009-10-01 13:51:21 -0700 |
commit | 4a86133a0d7a4d20887c2f2d726d1558f47c476b (patch) | |
tree | cce0cc65b7df610341389c12f54474c3869e8032 /lib/Vyatta/Qos/RoundRobin.pm | |
parent | 6736b2088a169d10e179e561e603e9e6993513fa (diff) | |
download | vyatta-cfg-qos-4a86133a0d7a4d20887c2f2d726d1558f47c476b.tar.gz vyatta-cfg-qos-4a86133a0d7a4d20887c2f2d726d1558f47c476b.zip |
Fix match rules for traffic limiter
Need to pass police string in to Match filter generator.
Bug 4596
(cherry picked from commit 340773bacdacbb88586ff0ea8d053990205bd538)
Diffstat (limited to 'lib/Vyatta/Qos/RoundRobin.pm')
-rw-r--r-- | lib/Vyatta/Qos/RoundRobin.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Vyatta/Qos/RoundRobin.pm b/lib/Vyatta/Qos/RoundRobin.pm index af45875..a1d7787 100644 --- a/lib/Vyatta/Qos/RoundRobin.pm +++ b/lib/Vyatta/Qos/RoundRobin.pm @@ -68,8 +68,7 @@ sub commands { $class->gen_class( $dev, 'drr', $parent ); $class->gen_leaf( $dev, $parent ); foreach my $match ( $class->matchRules() ) { - $match->filter( $dev, $parent, 1 ); - printf " classid %x:%x\n", $parent, $class->{id}; + $match->filter( $dev, $parent, $class->{id}, 1); } } } |