summaryrefslogtreecommitdiff
path: root/lib/Vyatta/Qos/TrafficShaper.pm
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-15 13:13:02 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2010-07-15 13:13:02 -0700
commitbb78be860c22628305fcf8445000de9dedd0a240 (patch)
treefc7c83cb2381cb7aef067f0636dfe5b5d8b57366 /lib/Vyatta/Qos/TrafficShaper.pm
parent381dcdcc46b8652135d59342e33535d1aa750e05 (diff)
downloadvyatta-cfg-qos-bb78be860c22628305fcf8445000de9dedd0a240.tar.gz
vyatta-cfg-qos-bb78be860c22628305fcf8445000de9dedd0a240.zip
Fix problems when combining match rules
Can't have 2 filters at same priority level, need to cascade them.
Diffstat (limited to 'lib/Vyatta/Qos/TrafficShaper.pm')
-rw-r--r--lib/Vyatta/Qos/TrafficShaper.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Vyatta/Qos/TrafficShaper.pm b/lib/Vyatta/Qos/TrafficShaper.pm
index f89ae60..4fa3008 100644
--- a/lib/Vyatta/Qos/TrafficShaper.pm
+++ b/lib/Vyatta/Qos/TrafficShaper.pm
@@ -151,8 +151,10 @@ sub commands {
$class->gen_class( $dev, 'htb', $parent, $rate );
$class->gen_leaf( $dev, $parent, $rate );
+ my $prio = 1;
foreach my $match ( $class->matchRules() ) {
- $match->filter( $dev, $parent, $class->{id}, 1, $class->{dsmark} );
+ $match->filter( $dev, $parent, $class->{id},
+ $prio++, $class->{dsmark} );
}
}
}