OSDN Git Service

mt76: testmode: remove unnecessary function calls in mt76_testmode_free_skb
authorLorenzo Bianconi <lorenzo@kernel.org>
Thu, 27 May 2021 11:35:29 +0000 (13:35 +0200)
committerFelix Fietkau <nbd@nbd.name>
Sat, 19 Jun 2021 07:22:46 +0000 (09:22 +0200)
Get rid of unnecessary function calls in mt76_testmode_free_skb routine
since they are already managed by dev_kfree_skb

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/testmode.c

index f40387a..c516469 100644 (file)
@@ -88,17 +88,8 @@ static void
 mt76_testmode_free_skb(struct mt76_phy *phy)
 {
        struct mt76_testmode_data *td = &phy->test;
-       struct sk_buff *skb = td->tx_skb;
-
-       if (!skb)
-               return;
-
-       if (skb_has_frag_list(skb)) {
-               kfree_skb_list(skb_shinfo(skb)->frag_list);
-               skb_shinfo(skb)->frag_list = NULL;
-       }
 
-       dev_kfree_skb(skb);
+       dev_kfree_skb(td->tx_skb);
        td->tx_skb = NULL;
 }