mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 22:25:16 +00:00
net: atheros: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles
dev_consume_skb_irq() should be called 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
eae15bdc2a
commit
d270f67d32
2 changed files with 2 additions and 2 deletions
|
@ -1259,7 +1259,7 @@ static bool atl1e_clean_tx_irq(struct atl1e_adapter *adapter)
|
|||
}
|
||||
|
||||
if (tx_buffer->skb) {
|
||||
dev_kfree_skb_irq(tx_buffer->skb);
|
||||
dev_consume_skb_irq(tx_buffer->skb);
|
||||
tx_buffer->skb = NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -2088,7 +2088,7 @@ static int atl1_intr_tx(struct atl1_adapter *adapter)
|
|||
}
|
||||
|
||||
if (buffer_info->skb) {
|
||||
dev_kfree_skb_irq(buffer_info->skb);
|
||||
dev_consume_skb_irq(buffer_info->skb);
|
||||
buffer_info->skb = NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue