projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
547412f
)
dwc_eth_qos: use dev_kfree_skb_any instead of dev_kfree_skb
author
Wei Yongjun
<
[email protected]
>
Thu, 20 Oct 2016 16:59:49 +0000
(16:59 +0000)
committer
David S. Miller
<
[email protected]
>
Thu, 20 Oct 2016 18:47:52 +0000
(14:47 -0400)
Replace dev_kfree_skb with dev_kfree_skb_any in dwceqos_start_xmit()
which can be called from hard irq context (netpoll) and from
other contexts. dwceqos_start_xmit() only frees skbs that it has
dropped.
This is detected by Coccinelle semantic patch.
Signed-off-by: Wei Yongjun <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/synopsys/dwc_eth_qos.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/synopsys/dwc_eth_qos.c
b/drivers/net/ethernet/synopsys/dwc_eth_qos.c
index 0d005312854255bf0e7de592f43b52bb8d8fdea3..eaa51ce8bd6d44b3fa0bfaf02e4e575a347a4ca0 100644
(file)
--- a/
drivers/net/ethernet/synopsys/dwc_eth_qos.c
+++ b/
drivers/net/ethernet/synopsys/dwc_eth_qos.c
@@
-2211,7
+2211,7
@@
static int dwceqos_start_xmit(struct sk_buff *skb, struct net_device *ndev)
tx_error:
dwceqos_tx_rollback(lp, &trans);
- dev_kfree_skb(skb);
+ dev_kfree_skb
_any
(skb);
return 0;
}