Commit 0ef47309 authored by Matti Linnanvuori's avatar Matti Linnanvuori Committed by David S. Miller

net: Comment dev_kfree_skb_irq and dev_kfree_skb_any better

Comment dev_kfree_skb_irq and dev_kfree_skb_any better.
Signed-off-by: default avatarMatti Linnanvuori <mattilinnanvuori@yahoo.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a5a04819
...@@ -1074,12 +1074,14 @@ static inline int netif_is_multiqueue(const struct net_device *dev) ...@@ -1074,12 +1074,14 @@ static inline int netif_is_multiqueue(const struct net_device *dev)
} }
/* Use this variant when it is known for sure that it /* Use this variant when it is known for sure that it
* is executing from interrupt context. * is executing from hardware interrupt context or with hardware interrupts
* disabled.
*/ */
extern void dev_kfree_skb_irq(struct sk_buff *skb); extern void dev_kfree_skb_irq(struct sk_buff *skb);
/* Use this variant in places where it could be invoked /* Use this variant in places where it could be invoked
* either from interrupt or non-interrupt context. * from either hardware interrupt or other context, with hardware interrupts
* either disabled or enabled.
*/ */
extern void dev_kfree_skb_any(struct sk_buff *skb); extern void dev_kfree_skb_any(struct sk_buff *skb);
......
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