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

mac80211: fix a harmless uninitialized variable warning


Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 1c528260
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ performance. Disable it until the cause has been found and fixed ...@@ -8,7 +8,7 @@ performance. Disable it until the cause has been found and fixed
lockdep_assert_held(&fq->lock); lockdep_assert_held(&fq->lock);
+ /* HACK: disable fq for now until TCP issues are fixed */ + /* 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); hash = skb_get_hash_perturb(skb, fq->perturbation);
idx = reciprocal_scale(hash, fq->flows_cnt); idx = reciprocal_scale(hash, fq->flows_cnt);
......
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