summaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDenys Vlasenko2008-03-28 23:57:39 +0100
committerDavid S. Miller2008-03-28 23:57:39 +0100
commit1483b8744e1a189b2018e2a1bd82f343d6bb52d2 (patch)
tree87c8836dbef511366270c8008d5a5e77d03ef7f4 /net/core
parent[NET]: Protect device namespace inlines with CONFIG_NET (diff)
downloadkernel-qcow2-linux-1483b8744e1a189b2018e2a1bd82f343d6bb52d2.tar.gz
kernel-qcow2-linux-1483b8744e1a189b2018e2a1bd82f343d6bb52d2.tar.xz
kernel-qcow2-linux-1483b8744e1a189b2018e2a1bd82f343d6bb52d2.zip
[NET]: Add inline intent commentary to dev_alloc_skb().
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
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,
*/
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);
}
EXPORT_SYMBOL(dev_alloc_skb);