summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-04-09 14:44:43 -0500
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-04-09 14:44:43 -0500
commit2437f45c1c6642d89f72c95b201b87081b7a5d0b (patch)
tree0f012a872408cae83b1afbd554561438d1165a5a /scripts
parente2da1de0e4d30cd713b35b5b3fc6a81e018a64ff (diff)
parent6d342e39065a8e2dfda395d4e98021d7026c462a (diff)
downloadvyatta-cfg-qos-2437f45c1c6642d89f72c95b201b87081b7a5d0b.tar.gz
vyatta-cfg-qos-2437f45c1c6642d89f72c95b201b87081b7a5d0b.zip
Merge branch 'glendale' of suva.vyatta.com:/git/vyatta-cfg-qos into glendale
Diffstat (limited to 'scripts')
-rw-r--r--scripts/VyattaQosTrafficShaper.pm31
1 files changed, 12 insertions, 19 deletions
diff --git a/scripts/VyattaQosTrafficShaper.pm b/scripts/VyattaQosTrafficShaper.pm
index 8ecb6db..ef7bd7b 100644
--- a/scripts/VyattaQosTrafficShaper.pm
+++ b/scripts/VyattaQosTrafficShaper.pm
@@ -102,24 +102,21 @@
}
sub rateCheck {
- my ($self, $speed) = @_;
- my $rate = _getPercentRate($self->{_rate}, $speed);
- my $ceil = _getPercentRate($self->{_ceiling}, $speed);
+ my ($self, $limit, $level) = @_;
- if ($rate > $speed) {
- printf "policy bandwidth %dKbps < class bandwidth %dKbps\n",
- $speed / 1000, $rate / 1000;
- return undef;
+ my $rate = _getPercentRate($self->{_rate}, $limit);
+ if ($rate > $limit) {
+ printf STDERR
+ "Warning: $level\nbandwidth %dKbps > overall bandwidth %dKbps\n",
+ $rate / 1000, $limit / 1000;
}
- # create the class
+ my $ceil = _getPercentRate($self->{_ceiling}, $limit);
if (defined $ceil && $ceil < $rate) {
- printf "ceiling %dKbps < bandwidth %dKbps\n",
+ printf STDERR
+ "Warning: $level\nceiling %dKbps < class bandwidth %dKbps\n",
$ceil / 1000, $rate / 1000;
- return undef;
}
-
- return !0;
}
sub prioQdisc {
@@ -196,6 +193,7 @@
printf ${out} "class add dev %s parent %x:1 classid %x:%x htb rate %s",
$dev, $parent, $parent, $self->{id}, $rate;
+ print ${out} " ceil $self->{_ceiling}" if ( defined $self->{_ceiling} );
print ${out} " burst $self->{_burst}" if ( defined $self->{_burst} );
print ${out} " prio $self->{_priority}" if ( defined $self->{_priority} );
print {$out} "\n";
@@ -317,15 +315,10 @@ sub commands {
my $default = shift @$classes;
my $maxid = 1;
- if (! $default->rateCheck($rate) ) {
- die "$self->{_level} default : invalid parameter\n";
- }
+ $default->rateCheck($rate, "$self->{_level} default");
foreach my $class (@$classes) {
- # rate constraints
- if (! $class->rateCheck($rate) ) {
- die "$self->{_level} class $class->{id} : invalid parameter\n";
- }
+ $class->rateCheck($rate, "$self->{_level} class $class->{id}");
# find largest class id
if (defined $class->{id} && $class->{id} > $maxid) {