diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-09-11 23:13:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-09-11 23:13:24 +0000 |
commit | 8d699086c35a407c372514dda17058dc325d3977 (patch) | |
tree | e21399c95c312abcddbb46353fa72378f57f504f /package/network/config/qos-scripts | |
parent | e9dab2de72a493118b230551a61f83ff797e43a4 (diff) | |
download | upstream-8d699086c35a407c372514dda17058dc325d3977.tar.gz upstream-8d699086c35a407c372514dda17058dc325d3977.tar.bz2 upstream-8d699086c35a407c372514dda17058dc325d3977.zip |
qos-scripts: disable fq_codel ecn by default to improve compatibility
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42479
Diffstat (limited to 'package/network/config/qos-scripts')
-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 8f8eefd938..12f94a67f1 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 limit 800 quantum 300" + print "tc qdisc add dev "device" parent 1:"class[i]"0 handle "class[i]"00: fq_codel limit 800 quantum 300 noecn" } # filter rule |