mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 09:01:36 -04:00
mt76: testmode: add a limit for queued tx_frames packets
This avoids running out of available tx tokens Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
@@ -33,7 +33,8 @@ void mt76_testmode_tx_pending(struct mt76_dev *dev)
|
||||
|
||||
spin_lock_bh(&q->lock);
|
||||
|
||||
while (td->tx_pending > 0 && q->queued < q->ndesc / 2) {
|
||||
while (td->tx_pending > 0 && td->tx_queued - td->tx_done < 1000 &&
|
||||
q->queued < q->ndesc / 2) {
|
||||
int ret;
|
||||
|
||||
ret = dev->queue_ops->tx_queue_skb(dev, qid, skb_get(skb), wcid, NULL);
|
||||
|
||||
Reference in New Issue
Block a user