aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wan/z85230.c
diff options
context:
space:
mode:
authorYang Wei <yang.wei9@zte.com.cn>2019-02-25 23:06:24 +0800
committerDavid S. Miller <davem@davemloft.net>2019-02-25 14:36:15 -0800
commitc14f7e1efcbf744c49fcb44a121112c54d2c5330 (patch)
treedcc1ee1a9428bdd9467421de2fe4d42d704d0c06 /drivers/net/wan/z85230.c
parentnet: wan: cosa: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles (diff)
downloadlinux-dev-c14f7e1efcbf744c49fcb44a121112c54d2c5330.tar.xz
linux-dev-c14f7e1efcbf744c49fcb44a121112c54d2c5330.zip
net: wan: z85230: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles
dev_consume_skb_irq() should be called in z8530_tx_done() 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>
Diffstat (limited to '')
-rw-r--r--drivers/net/wan/z85230.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/z85230.c b/drivers/net/wan/z85230.c
index deea41e96f01..0e56ab0aed9a 100644
--- a/drivers/net/wan/z85230.c
+++ b/drivers/net/wan/z85230.c
@@ -1536,7 +1536,7 @@ static void z8530_tx_done(struct z8530_channel *c)
z8530_tx_begin(c);
c->netdevice->stats.tx_packets++;
c->netdevice->stats.tx_bytes += skb->len;
- dev_kfree_skb_irq(skb);
+ dev_consume_skb_irq(skb);
}
/**