aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/skbuff.c
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2008-04-13 21:52:48 -0700
committerDavid S. Miller <davem@davemloft.net>2008-04-13 21:52:48 -0700
commit4c821d753d5c097babd6609bcd85f08e254a3505 (patch)
tree597d86c6b81340e66adae5e127b27a428473cdc2 /net/core/skbuff.c
parent[SOCK] sk_stamp: should be initialized to ktime_set(-1L, 0) (diff)
downloadlinux-dev-4c821d753d5c097babd6609bcd85f08e254a3505.tar.xz
linux-dev-4c821d753d5c097babd6609bcd85f08e254a3505.zip
[NET]: Fix kernel-doc for skb_segment
The kernel-doc comment for skb_segment is clearly wrong. This states what it actually does. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r--net/core/skbuff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 0d0fd28a9041..608701339620 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -2131,8 +2131,8 @@ EXPORT_SYMBOL_GPL(skb_pull_rcsum);
* @features: features for the output path (see dev->features)
*
* This function performs segmentation on the given skb. It returns
- * the segment at the given position. It returns NULL if there are
- * no more segments to generate, or when an error is encountered.
+ * a pointer to the first in a list of new skbs for the segments.
+ * In case of error it returns ERR_PTR(err).
*/
struct sk_buff *skb_segment(struct sk_buff *skb, int features)
{