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
|
@ -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…
Reference in New Issue