Commit d270f67d authored by Yang Wei's avatar Yang Wei Committed by David S. Miller

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: default avatarYang Wei <yang.wei9@zte.com.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent eae15bdc
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment