Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/mt76.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYN Chen <yn.chen@mediatek.com>2022-07-23 00:59:23 +0300
committerFelix Fietkau <nbd@nbd.name>2022-09-15 14:14:11 +0300
commitfe85e5ccbaca34ce25e53164fadb31a632c8b9ad (patch)
tree799f7b9e3e0d6db706a54fafaea263497fe21521
parent0ad02c9a451236a485fc9d30dcd5c9381a093cd9 (diff)
wifi: mt76: sdio: fix transmitting packet hangs
Fix transmitting packets hangs with continuing to pull the pending packet from mac80211 queues when receiving Tx status notification from the device. Fixes: aac5104bf631 ("mt76: sdio: do not run mt76_txq_schedule directly") Acked-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: YN Chen <yn.chen@mediatek.com> Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--sdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdio.c b/sdio.c
index ece4e4bb..0ec308f9 100644
--- a/sdio.c
+++ b/sdio.c
@@ -485,7 +485,7 @@ static void mt76s_status_worker(struct mt76_worker *w)
} while (nframes > 0);
if (resched)
- mt76_worker_schedule(&dev->sdio.txrx_worker);
+ mt76_worker_schedule(&dev->tx_worker);
}
static void mt76s_tx_status_data(struct work_struct *work)