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:
Yang Wei 2019-02-12 23:51:45 +08:00 committed by David S. Miller
parent eae15bdc2a
commit d270f67d32
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}