From e72c7e17a475c00134c56f4392578ddc16a47a2e Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Thu, 24 Oct 2013 13:50:11 +0000 Subject: preliminary 3.12 support Signed-off-by: Imre Kaloz SVN-Revision: 38528 --- .../generic/patches-3.12/664-codel_fix_3_12.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 target/linux/generic/patches-3.12/664-codel_fix_3_12.patch (limited to 'target/linux/generic/patches-3.12/664-codel_fix_3_12.patch') diff --git a/target/linux/generic/patches-3.12/664-codel_fix_3_12.patch b/target/linux/generic/patches-3.12/664-codel_fix_3_12.patch new file mode 100644 index 0000000..0344e16 --- /dev/null +++ b/target/linux/generic/patches-3.12/664-codel_fix_3_12.patch @@ -0,0 +1,22 @@ +--- a/net/sched/sch_api.c ++++ b/net/sched/sch_api.c +@@ -1906,7 +1906,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); +--- a/net/sched/sch_generic.c ++++ b/net/sched/sch_generic.c +@@ -31,7 +31,7 @@ + #include + + /* 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. */ -- cgit v1.1