r8169: don't use bit LastFrag in tx descriptor after send
On RTL8125 this bit is always cleared after send. Therefore check for tx_skb->skb being set what is functionally equivalent. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7366016d2d
commit
ae84bc1873
@ -5713,7 +5713,7 @@ static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp,
|
|||||||
|
|
||||||
rtl8169_unmap_tx_skb(tp_to_dev(tp), tx_skb,
|
rtl8169_unmap_tx_skb(tp_to_dev(tp), tx_skb,
|
||||||
tp->TxDescArray + entry);
|
tp->TxDescArray + entry);
|
||||||
if (status & LastFrag) {
|
if (tx_skb->skb) {
|
||||||
pkts_compl++;
|
pkts_compl++;
|
||||||
bytes_compl += tx_skb->skb->len;
|
bytes_compl += tx_skb->skb->len;
|
||||||
napi_consume_skb(tx_skb->skb, budget);
|
napi_consume_skb(tx_skb->skb, budget);
|
||||||
|
Loading…
Reference in New Issue
Block a user