Browse Source

fix qos-scripts RED qdisc calculation for slow lines

SVN-Revision: 5853
Felix Fietkau 19 years ago
parent
commit
e3a0c3b9fd
2 changed files with 2 additions and 1 deletions
  1. 1 1
      package/qos-scripts/Makefile
  2. 1 0
      package/qos-scripts/files/usr/lib/qos.sh

+ 1 - 1
package/qos-scripts/Makefile

@@ -9,7 +9,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=qos-scripts
-PKG_VERSION:=0.9.3
+PKG_VERSION:=0.9.4
 PKG_RELEASE:=1
 
 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

+ 1 - 0
package/qos-scripts/files/usr/lib/qos.sh

@@ -275,6 +275,7 @@ BEGIN {
 		print "sfq perturb 10 limit " cqlen 
 	} else {
 		avpkt = 1200
+		if (min < avpkt) min = avpkt
 		min = int(limit * 1024 / 8 * 0.1)
 		dqb = cqlen * 1500
 		max = int(min + (dqb - min) * 0.25)