mt76: mt7615: clean up FWDL TXQ during/after firmware upload
authorFelix Fietkau <nbd@nbd.name>
Mon, 1 Jul 2019 18:17:40 +0000 (20:17 +0200)
committerFelix Fietkau <nbd@nbd.name>
Thu, 5 Sep 2019 15:42:28 +0000 (17:42 +0200)
Since we don't clean that tx queue from the tx tasklet, we need to do it
after the firmware upload is done. This patch also adds a cleanup step during
the upload, to help reclaim memory faster.

Fixes unprocessed queued frames eating up memory  long after the firmware
upload has already completed

Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7615/mcu.c

index 06d1461..de371bd 100644 (file)
@@ -248,6 +248,7 @@ static int mt7615_mcu_send_firmware(struct mt7615_dev *dev, const void *data,
 
                data += cur_len;
                len -= cur_len;
+               mt76_queue_tx_cleanup(dev, MT_TXQ_FWDL, false);
        }
 
        return ret;
@@ -525,6 +526,8 @@ static int mt7615_load_firmware(struct mt7615_dev *dev)
                return -EIO;
        }
 
+       mt76_queue_tx_cleanup(dev, MT_TXQ_FWDL, false);
+
        dev_dbg(dev->mt76.dev, "Firmware init done\n");
 
        return 0;