aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-06-20 16:57:09 +0200
committerZoltan HERPAI <wigyori@uid0.hu>2016-06-20 16:57:09 +0200
commitee57ff57f10937841b49380a8f1ef8e438021736 (patch)
tree2e51e2a0de21885a4ca50391c01b6245d892737b /target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch
parentd354aaa58d046f343d024f4d0c0fa711c3dd1b2b (diff)
downloadmaster-187ad058-ee57ff57f10937841b49380a8f1ef8e438021736.tar.gz
master-187ad058-ee57ff57f10937841b49380a8f1ef8e438021736.tar.bz2
master-187ad058-ee57ff57f10937841b49380a8f1ef8e438021736.zip
kernel: fold codel default fix into main patch
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch')
-rw-r--r--target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch b/target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch
index d3aeb9256f..096d239238 100644
--- a/target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch
+++ b/target/linux/generic/patches-4.4/662-use_fq_codel_by_default.patch
@@ -42,6 +42,15 @@
struct Qdisc_class_common {
--- a/net/sched/sch_generic.c
+++ b/net/sched/sch_generic.c
+@@ -31,7 +31,7 @@
+ #include <net/dst.h>
+
+ /* Qdisc to use by default */
+-const struct Qdisc_ops *default_qdisc_ops = &pfifo_fast_ops;
++const struct Qdisc_ops *default_qdisc_ops = &fq_codel_qdisc_ops;
+ EXPORT_SYMBOL(default_qdisc_ops);
+
+ /* Main transmission queue. */
@@ -728,7 +728,7 @@ static void attach_one_default_qdisc(str
void *_unused)
{
@@ -73,3 +82,14 @@
TC_H_MAKE(TC_H_MAJ(sch->handle),
TC_H_MIN(i + 1)));
if (qdisc == NULL) {
+--- a/net/sched/sch_api.c
++++ b/net/sched/sch_api.c
+@@ -1946,7 +1946,7 @@ static int __init pktsched_init(void)
+ return err;
+ }
+
+- register_qdisc(&pfifo_fast_ops);
++ register_qdisc(&fq_codel_qdisc_ops);
+ register_qdisc(&pfifo_qdisc_ops);
+ register_qdisc(&bfifo_qdisc_ops);
+ register_qdisc(&pfifo_head_drop_qdisc_ops);