projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
763284d
)
net: wan: sbni: replace dev_kfree_skb_irq by dev_consume_skb_irq for drop profiles
author
Yang Wei
<yang.wei9@zte.com.cn>
Mon, 25 Feb 2019 15:03:40 +0000
(23:03 +0800)
committer
David S. Miller
<davem@davemloft.net>
Mon, 25 Feb 2019 22:36:15 +0000
(14:36 -0800)
dev_consume_skb_irq() should be called in send_complete() 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>
drivers/net/wan/sbni.c
patch
|
blob
|
history
diff --git
a/drivers/net/wan/sbni.c
b/drivers/net/wan/sbni.c
index 8e8c4c0e1b64cc8c819a72c95e71f9cb246f760d..40c04ea1200a69d966c04fb032d1d7c8127518c8 100644
(file)
--- a/
drivers/net/wan/sbni.c
+++ b/
drivers/net/wan/sbni.c
@@
-761,7
+761,7
@@
send_complete( struct net_device *dev )
dev->stats.tx_packets++;
dev->stats.tx_bytes += nl->tx_buf_p->len;
#endif
- dev_
kfree_skb_irq( nl->tx_buf_p
);
+ dev_
consume_skb_irq(nl->tx_buf_p
);
nl->tx_buf_p = NULL;