mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-13 05:54:23 +08:00
net: broadcom: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles
dev_consume_skb_irq() should be called in sbdma_tx_process() 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
e0cbbc6131
commit
d2901b0739
@ -1288,7 +1288,7 @@ static void sbdma_tx_process(struct sbmac_softc *sc, struct sbmacdma *d,
|
||||
* for transmits, we just free buffers.
|
||||
*/
|
||||
|
||||
dev_kfree_skb_irq(sb);
|
||||
dev_consume_skb_irq(sb);
|
||||
|
||||
/*
|
||||
* .. and advance to the next buffer.
|
||||
|
Loading…
Reference in New Issue
Block a user