wifi: mt76: remove unused error path in mt76_connac_tx_complete_skb
authorFelix Fietkau <nbd@nbd.name>
Mon, 11 Sep 2023 13:15:18 +0000 (15:15 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Nov 2023 10:58:58 +0000 (11:58 +0100)
[ Upstream commit 832f42699791e7a90e81c15da0ce886b4f8300b8 ]

The error handling code was added in order to allow tx enqueue to fail after
calling .tx_prepare_skb. Since this can no longer happen, the error handling
code is unused.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Stable-dep-of: bde2e77f7626 ("wifi: mt76: mt7996: set correct wcid in txp")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/mediatek/mt76/dma.c
drivers/net/wireless/mediatek/mt76/mt7615/pci_mac.c
drivers/net/wireless/mediatek/mt76/mt76_connac_mac.c
drivers/net/wireless/mediatek/mt76/mt7915/mac.c
drivers/net/wireless/mediatek/mt76/mt7921/pci_mac.c
drivers/net/wireless/mediatek/mt76/mt7996/mac.c

index dc8f4e1..6ca7b49 100644 (file)
@@ -330,9 +330,6 @@ mt76_dma_tx_cleanup_idx(struct mt76_dev *dev, struct mt76_queue *q, int idx,
        if (e->txwi == DMA_DUMMY_DATA)
                e->txwi = NULL;
 
-       if (e->skb == DMA_DUMMY_DATA)
-               e->skb = NULL;
-
        *prev_e = *e;
        memset(e, 0, sizeof(*e));
 }
index 0019890..fbb1181 100644 (file)
@@ -106,7 +106,7 @@ int mt7615_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
        else
                mt76_connac_write_hw_txp(mdev, tx_info, txp, id);
 
-       tx_info->skb = DMA_DUMMY_DATA;
+       tx_info->skb = NULL;
 
        return 0;
 }
index ee5177f..73db9e1 100644 (file)
@@ -151,23 +151,6 @@ void mt76_connac_tx_complete_skb(struct mt76_dev *mdev,
                return;
        }
 
-       /* error path */
-       if (e->skb == DMA_DUMMY_DATA) {
-               struct mt76_connac_txp_common *txp;
-               struct mt76_txwi_cache *t;
-               u16 token;
-
-               txp = mt76_connac_txwi_to_txp(mdev, e->txwi);
-               if (is_mt76_fw_txp(mdev))
-                       token = le16_to_cpu(txp->fw.token);
-               else
-                       token = le16_to_cpu(txp->hw.msdu_id[0]) &
-                               ~MT_MSDU_ID_VALID;
-
-               t = mt76_token_put(mdev, token);
-               e->skb = t ? t->skb : NULL;
-       }
-
        if (e->skb)
                mt76_tx_complete_skb(mdev, e->wcid, e->skb);
 }
index b8b0c0f..2222fb9 100644 (file)
@@ -809,7 +809,7 @@ int mt7915_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
                txp->rept_wds_wcid = cpu_to_le16(wcid->idx);
        else
                txp->rept_wds_wcid = cpu_to_le16(0x3ff);
-       tx_info->skb = DMA_DUMMY_DATA;
+       tx_info->skb = NULL;
 
        /* pass partial skb header to fw */
        tx_info->buf[1].len = MT_CT_PARSE_LEN;
index e7a995e..c866144 100644 (file)
@@ -48,7 +48,7 @@ int mt7921e_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
        memset(txp, 0, sizeof(struct mt76_connac_hw_txp));
        mt76_connac_write_hw_txp(mdev, tx_info, txp, id);
 
-       tx_info->skb = DMA_DUMMY_DATA;
+       tx_info->skb = NULL;
 
        return 0;
 }
index ac8759f..0eebf91 100644 (file)
@@ -995,7 +995,7 @@ int mt7996_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
                txp->fw.rept_wds_wcid = cpu_to_le16(wcid->idx);
        else
                txp->fw.rept_wds_wcid = cpu_to_le16(0xfff);
-       tx_info->skb = DMA_DUMMY_DATA;
+       tx_info->skb = NULL;
 
        /* pass partial skb header to fw */
        tx_info->buf[1].len = MT_CT_PARSE_LEN;