From: David S. Miller Date: Sat, 29 Mar 2008 01:22:32 +0000 (-0700) Subject: [NET]: Fix dev_alloc_skb() typo. X-Git-Tag: v2.6.26-rc1~1138^2~277 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=a0f55e0e833009c6a4eeb2626b807e3c21b128c8;p=~shefty%2Frdma-dev.git [NET]: Fix dev_alloc_skb() typo. Noticed by Joe Perches. Signed-off-by: David S. Miller --- diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 6ef7008a3ef..e4259215607 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -279,7 +279,7 @@ struct sk_buff *dev_alloc_skb(unsigned int length) { /* * There is more code here than it seems: - * __def_alloc_skb is an inline + * __dev_alloc_skb is an inline */ return __dev_alloc_skb(length, GFP_ATOMIC); }