Loading net/core/skbuff.c +4 −0 Original line number Original line Diff line number Diff line Loading @@ -277,6 +277,10 @@ struct sk_buff *__netdev_alloc_skb(struct net_device *dev, */ */ struct sk_buff *dev_alloc_skb(unsigned int length) struct sk_buff *dev_alloc_skb(unsigned int length) { { /* * There is more code here than it seems: * __def_alloc_skb is an inline */ return __dev_alloc_skb(length, GFP_ATOMIC); return __dev_alloc_skb(length, GFP_ATOMIC); } } EXPORT_SYMBOL(dev_alloc_skb); EXPORT_SYMBOL(dev_alloc_skb); Loading Loading
net/core/skbuff.c +4 −0 Original line number Original line Diff line number Diff line Loading @@ -277,6 +277,10 @@ struct sk_buff *__netdev_alloc_skb(struct net_device *dev, */ */ struct sk_buff *dev_alloc_skb(unsigned int length) struct sk_buff *dev_alloc_skb(unsigned int length) { { /* * There is more code here than it seems: * __def_alloc_skb is an inline */ return __dev_alloc_skb(length, GFP_ATOMIC); return __dev_alloc_skb(length, GFP_ATOMIC); } } EXPORT_SYMBOL(dev_alloc_skb); EXPORT_SYMBOL(dev_alloc_skb); Loading