mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-06 22:04:22 +08: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:
parent
0642cf4020
commit
9729ff4cc5
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user