summaryrefslogtreecommitdiffstats
path: root/package/kernel
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-07-14 13:31:53 +0200
committerFelix Fietkau <nbd@nbd.name>2016-07-14 13:32:00 +0200
commit55761205ef8ae892e88c6201252b3f9ebf0f35fd (patch)
treec07f4612ca89f822f01159347303d56619f3fa26 /package/kernel
parent1c52826010ecc4440487fac3215108a55662cf07 (diff)
downloadmaster-31e0f0ae-55761205ef8ae892e88c6201252b3f9ebf0f35fd.tar.gz
master-31e0f0ae-55761205ef8ae892e88c6201252b3f9ebf0f35fd.tar.bz2
master-31e0f0ae-55761205ef8ae892e88c6201252b3f9ebf0f35fd.zip
mac80211: fix a harmless uninitialized variable warning
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/kernel')
-rw-r--r--package/kernel/mac80211/patches/220-fq_disable_hack.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/patches/220-fq_disable_hack.patch b/package/kernel/mac80211/patches/220-fq_disable_hack.patch
index c5721b5f0e..7f420beea5 100644
--- a/package/kernel/mac80211/patches/220-fq_disable_hack.patch
+++ b/package/kernel/mac80211/patches/220-fq_disable_hack.patch
@@ -8,7 +8,7 @@ performance. Disable it until the cause has been found and fixed
lockdep_assert_held(&fq->lock);
+ /* HACK: disable fq for now until TCP issues are fixed */
-+ return get_default_func(fq, tin, idx, skb);
++ return get_default_func(fq, tin, 0, skb);
+
hash = skb_get_hash_perturb(skb, fq->perturbation);
idx = reciprocal_scale(hash, fq->flows_cnt);