Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4924f44b authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

b44: use dev_kfree_skb() in b44_tx()



b44_tx() is run from softirq handler, it can use dev_kfree_skb() instead
of dev_kfree_skb_irq()

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 113ced1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -610,7 +610,7 @@ static void b44_tx(struct b44 *bp)
				 skb->len,
				 DMA_TO_DEVICE);
		rp->skb = NULL;
		dev_kfree_skb_irq(skb);
		dev_kfree_skb(skb);
	}

	bp->tx_cons = cons;