Commit 44e8f8ef authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76: mt76u: loop over all possible rx queues in mt76u_rx_tasklet



Loop over all possible hw rx queues in mt76u_rx_tasklet since new
devices will report mcu events through mcu hw queue

Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 377c0a94
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -672,10 +672,17 @@ mt76u_process_rx_queue(struct mt76_dev *dev, struct mt76_queue *q)
static void mt76u_rx_tasklet(unsigned long data)
{
	struct mt76_dev *dev = (struct mt76_dev *)data;
	struct mt76_queue *q = &dev->q_rx[MT_RXQ_MAIN];
	struct mt76_queue *q;
	int i;

	rcu_read_lock();
	for (i = 0; i < __MT_RXQ_MAX; i++) {
		q = &dev->q_rx[i];
		if (!q->ndesc)
			continue;

		mt76u_process_rx_queue(dev, q);
	}
	rcu_read_unlock();
}