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

Commit a2ccd2e4 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by David S. Miller
Browse files

8139too: Call dev_kfree_skby_any instead of dev_kfree_skb.



Replace dev_kfree_skb with dev_kfree_skb_any in functions that can
be called in hard irq and other contexts.

Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 508f81d5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -1717,9 +1717,9 @@ static netdev_tx_t rtl8139_start_xmit (struct sk_buff *skb,
		if (len < ETH_ZLEN)
		if (len < ETH_ZLEN)
			memset(tp->tx_buf[entry], 0, ETH_ZLEN);
			memset(tp->tx_buf[entry], 0, ETH_ZLEN);
		skb_copy_and_csum_dev(skb, tp->tx_buf[entry]);
		skb_copy_and_csum_dev(skb, tp->tx_buf[entry]);
		dev_kfree_skb(skb);
		dev_kfree_skb_any(skb);
	} else {
	} else {
		dev_kfree_skb(skb);
		dev_kfree_skb_any(skb);
		dev->stats.tx_dropped++;
		dev->stats.tx_dropped++;
		return NETDEV_TX_OK;
		return NETDEV_TX_OK;
	}
	}