Skip to content
Snippets Groups Projects
Commit 4952469f authored by Felix Fietkau's avatar Felix Fietkau
Browse files

mac80211: disable fq until performance issues have been found and fixed


Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 99e5bec2
No related branches found
No related tags found
No related merge requests found
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, idx, skb);
+
hash = skb_get_hash_perturb(skb, fq->perturbation);
idx = reciprocal_scale(hash, fq->flows_cnt);
flow = &fq->flows[idx];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment