[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CA+BoTQnYiSdzn99_xZPs9X2JO3SijXj10C2ezVr_8OEZvNCStg@mail.gmail.com>
Date: Fri, 26 Feb 2016 19:54:57 +0100
From: Michal Kazior <michal.kazior@...to.com>
To: Felix Fietkau <nbd@...nwrt.org>
Cc: linux-wireless <linux-wireless@...r.kernel.org>,
Johannes Berg <johannes@...solutions.net>,
Network Development <netdev@...r.kernel.org>,
Eric Dumazet <eric.dumazet@...il.com>,
Dave Taht <dave.taht@...il.com>,
Emmanuel Grumbach <emmanuel.grumbach@...el.com>,
Tim Shepard <shep@...m.mit.edu>
Subject: Re: [RFC/RFT] mac80211: implement fq_codel for software queuing
On 26 February 2016 at 17:48, Felix Fietkau <nbd@...nwrt.org> wrote:
[...]
>> diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
>> index af584f7cdd63..f42f898cb8b5 100644
>> --- a/net/mac80211/tx.c
>> +++ b/net/mac80211/tx.c
>> + [...]
>> +static void ieee80211_txq_enqueue(struct ieee80211_local *local,
>> + struct txq_info *txqi,
>> + struct sk_buff *skb)
>> +{
>> + struct ieee80211_fq *fq = &local->fq;
>> + struct ieee80211_hw *hw = &local->hw;
>> + struct txq_flow *flow;
>> + struct txq_flow *i;
>> + size_t idx = fq_hash(fq, skb);
>> +
>> + flow = &fq->flows[idx];
>> +
>> + if (flow->txqi)
>> + flow = &txqi->flow;
> I'm not sure I understand this part correctly, but shouldn't that be:
> if (flow->txqi && flow->txqi != txqi)
You're correct. Good catch, thanks!
MichaĆ
Powered by blists - more mailing lists