summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-09-05 19:19:48 +0200
committerFelix Fietkau <nbd@nbd.name>2016-09-08 15:28:38 +0200
commitc4bfb119d85bcd5faf569f9cc83628ba19f58a1f (patch)
treecf3f337157a759b8af8538887fc6ccf1039d5e4c /package
parenta194ffd4a89588bc75aeb9a27f59c36afd3d24bd (diff)
downloadmaster-31e0f0ae-c4bfb119d85bcd5faf569f9cc83628ba19f58a1f.tar.gz
master-31e0f0ae-c4bfb119d85bcd5faf569f9cc83628ba19f58a1f.tar.bz2
master-31e0f0ae-c4bfb119d85bcd5faf569f9cc83628ba19f58a1f.zip
mac80211: remove the fq-disable hack, now that reordering is fixed
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package')
-rw-r--r--package/kernel/mac80211/patches/220-fq_disable_hack.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/kernel/mac80211/patches/220-fq_disable_hack.patch b/package/kernel/mac80211/patches/220-fq_disable_hack.patch
deleted file mode 100644
index 7f420beea5..0000000000
--- a/package/kernel/mac80211/patches/220-fq_disable_hack.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-mac80211 fq has been found to cause a regression in multi-stream TCP
-performance. Disable it until the cause has been found and fixed
-
---- a/include/net/fq_impl.h
-+++ b/include/net/fq_impl.h
-@@ -104,6 +104,9 @@ static struct fq_flow *fq_flow_classify(
-
- lockdep_assert_held(&fq->lock);
-
-+ /* HACK: disable fq for now until TCP issues are fixed */
-+ return get_default_func(fq, tin, 0, skb);
-+
- hash = skb_get_hash_perturb(skb, fq->perturbation);
- idx = reciprocal_scale(hash, fq->flows_cnt);
- flow = &fq->flows[idx];