aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
Diffstat (limited to 'net/core')
-rw-r--r--net/core/skbuff.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 86e5682728be..6ef7008a3ef3 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -277,6 +277,10 @@ struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
277 */ 277 */
278struct sk_buff *dev_alloc_skb(unsigned int length) 278struct sk_buff *dev_alloc_skb(unsigned int length)
279{ 279{
280 /*
281 * There is more code here than it seems:
282 * __def_alloc_skb is an inline
283 */
280 return __dev_alloc_skb(length, GFP_ATOMIC); 284 return __dev_alloc_skb(length, GFP_ATOMIC);
281} 285}
282EXPORT_SYMBOL(dev_alloc_skb); 286EXPORT_SYMBOL(dev_alloc_skb);