Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fb208dc7 authored by Felix Fietkau's avatar Felix Fietkau Committed by Kalle Valo
Browse files

mt76: avoid re-queueing A-MPDU rx reorder work if no frames are pending



Fixes: aee5b8cf ("mt76: implement A-MPDU rx reordering in the driver code")
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 17cf68b7
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ mt76_rx_aggr_reorder_work(struct work_struct *work)
					       reorder_work.work);
	struct mt76_dev *dev = tid->dev;
	struct sk_buff_head frames;
	int nframes;

	__skb_queue_head_init(&frames);

@@ -105,9 +106,12 @@ mt76_rx_aggr_reorder_work(struct work_struct *work)

	spin_lock(&tid->lock);
	mt76_rx_aggr_check_release(tid, &frames);
	nframes = tid->nframes;
	spin_unlock(&tid->lock);

	ieee80211_queue_delayed_work(tid->dev->hw, &tid->reorder_work, REORDER_TIMEOUT);
	if (nframes)
		ieee80211_queue_delayed_work(tid->dev->hw, &tid->reorder_work,
					     REORDER_TIMEOUT);
	mt76_rx_complete(dev, &frames, -1);

	local_bh_enable();