diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-09 14:59:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-09 14:59:10 +0000 |
commit | 88c418bc755cf0fcaacfe7699adf93f6a837632e (patch) | |
tree | 3a58d8169df92e3f088f90658e1f61e4ccf41d49 /package | |
parent | fb47fd0d6b5b03eae3ad204265a398d32b422de0 (diff) | |
download | mtk-20170518-88c418bc755cf0fcaacfe7699adf93f6a837632e.zip mtk-20170518-88c418bc755cf0fcaacfe7699adf93f6a837632e.tar.gz mtk-20170518-88c418bc755cf0fcaacfe7699adf93f6a837632e.tar.bz2 |
qos-scripts: add queue length and quantum limit, suggested by dtaht
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36294
Diffstat (limited to 'package')
-rw-r--r-- | package/network/config/qos-scripts/files/usr/lib/qos/tcrules.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/qos-scripts/files/usr/lib/qos/tcrules.awk b/package/network/config/qos-scripts/files/usr/lib/qos/tcrules.awk index a19b651..2a88714 100644 --- a/package/network/config/qos-scripts/files/usr/lib/qos/tcrules.awk +++ b/package/network/config/qos-scripts/files/usr/lib/qos/tcrules.awk @@ -79,7 +79,7 @@ END { # leaf qdisc avpkt = 1200 for (i = 1; i <= n; i++) { - print "tc qdisc add dev "device" parent 1:"class[i]"0 handle "class[i]"00: fq_codel" + print "tc qdisc add dev "device" parent 1:"class[i]"0 handle "class[i]"00: fq_codel limit 800 quantum 300" } # filter rule |