mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 06:08:22 +00:00
net: apple: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles
dev_consume_skb_irq() should be called in mace_interrupt() when skb xmit done. It makes drop profiles(dropwatch, perf) more friendly. Signed-off-by: Yang Wei <yang.wei9@zte.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d270f67d32
commit
5f5a8c75da
1 changed files with 1 additions and 1 deletions
|
@ -764,7 +764,7 @@ static irqreturn_t mace_interrupt(int irq, void *dev_id)
|
|||
dev->stats.tx_bytes += mp->tx_bufs[i]->len;
|
||||
++dev->stats.tx_packets;
|
||||
}
|
||||
dev_kfree_skb_irq(mp->tx_bufs[i]);
|
||||
dev_consume_skb_irq(mp->tx_bufs[i]);
|
||||
--mp->tx_active;
|
||||
if (++i >= N_TX_RING)
|
||||
i = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue