mt76x2: add napi struct to mt76_rx_poll_complete/mt76_rx_complete signatures
in order to reuse mt76_rx_complete routine supporting mt76x2u based devices add napi struct to mt76_rx_poll_complete and mt76_rx_complete routine signatures and do not fetch it according to the rx queue index Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
d3c94b4046
commit
81e850ef26
|
@ -113,7 +113,7 @@ mt76_rx_aggr_reorder_work(struct work_struct *work)
|
||||||
if (nframes)
|
if (nframes)
|
||||||
ieee80211_queue_delayed_work(tid->dev->hw, &tid->reorder_work,
|
ieee80211_queue_delayed_work(tid->dev->hw, &tid->reorder_work,
|
||||||
REORDER_TIMEOUT);
|
REORDER_TIMEOUT);
|
||||||
mt76_rx_complete(dev, &frames, -1);
|
mt76_rx_complete(dev, &frames, NULL);
|
||||||
|
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
local_bh_enable();
|
local_bh_enable();
|
||||||
|
|
|
@ -400,7 +400,7 @@ mt76_dma_rx_poll(struct napi_struct *napi, int budget)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
cur = mt76_dma_rx_process(dev, &dev->q_rx[qid], budget - done);
|
cur = mt76_dma_rx_process(dev, &dev->q_rx[qid], budget - done);
|
||||||
mt76_rx_poll_complete(dev, qid);
|
mt76_rx_poll_complete(dev, qid, napi);
|
||||||
done += cur;
|
done += cur;
|
||||||
} while (cur && done < budget);
|
} while (cur && done < budget);
|
||||||
|
|
||||||
|
|
|
@ -583,15 +583,11 @@ mt76_check_ps(struct mt76_dev *dev, struct sk_buff *skb)
|
||||||
}
|
}
|
||||||
|
|
||||||
void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
|
void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
|
||||||
int queue)
|
struct napi_struct *napi)
|
||||||
{
|
{
|
||||||
struct napi_struct *napi = NULL;
|
|
||||||
struct ieee80211_sta *sta;
|
struct ieee80211_sta *sta;
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
if (queue >= 0)
|
|
||||||
napi = &dev->napi[queue];
|
|
||||||
|
|
||||||
spin_lock(&dev->rx_lock);
|
spin_lock(&dev->rx_lock);
|
||||||
while ((skb = __skb_dequeue(frames)) != NULL) {
|
while ((skb = __skb_dequeue(frames)) != NULL) {
|
||||||
if (mt76_check_ccmp_pn(skb)) {
|
if (mt76_check_ccmp_pn(skb)) {
|
||||||
|
@ -605,7 +601,8 @@ void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
|
||||||
spin_unlock(&dev->rx_lock);
|
spin_unlock(&dev->rx_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void mt76_rx_poll_complete(struct mt76_dev *dev, enum mt76_rxq_id q)
|
void mt76_rx_poll_complete(struct mt76_dev *dev, enum mt76_rxq_id q,
|
||||||
|
struct napi_struct *napi)
|
||||||
{
|
{
|
||||||
struct sk_buff_head frames;
|
struct sk_buff_head frames;
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
@ -617,5 +614,6 @@ void mt76_rx_poll_complete(struct mt76_dev *dev, enum mt76_rxq_id q)
|
||||||
mt76_rx_aggr_reorder(skb, &frames);
|
mt76_rx_aggr_reorder(skb, &frames);
|
||||||
}
|
}
|
||||||
|
|
||||||
mt76_rx_complete(dev, &frames, q);
|
mt76_rx_complete(dev, &frames, napi);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(mt76_rx_poll_complete);
|
||||||
|
|
|
@ -456,8 +456,9 @@ void mt76_wcid_key_setup(struct mt76_dev *dev, struct mt76_wcid *wcid,
|
||||||
void mt76_tx_free(struct mt76_dev *dev);
|
void mt76_tx_free(struct mt76_dev *dev);
|
||||||
void mt76_put_txwi(struct mt76_dev *dev, struct mt76_txwi_cache *t);
|
void mt76_put_txwi(struct mt76_dev *dev, struct mt76_txwi_cache *t);
|
||||||
void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
|
void mt76_rx_complete(struct mt76_dev *dev, struct sk_buff_head *frames,
|
||||||
int queue);
|
struct napi_struct *napi);
|
||||||
void mt76_rx_poll_complete(struct mt76_dev *dev, enum mt76_rxq_id q);
|
void mt76_rx_poll_complete(struct mt76_dev *dev, enum mt76_rxq_id q,
|
||||||
|
struct napi_struct *napi);
|
||||||
void mt76_rx_aggr_reorder(struct sk_buff *skb, struct sk_buff_head *frames);
|
void mt76_rx_aggr_reorder(struct sk_buff *skb, struct sk_buff_head *frames);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue