aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/skbuff.c
diff options
context:
space:
mode:
authorUrs Thuermann <urs@isnogud.escape.de>2008-02-12 22:03:25 -0800
committerDavid S. Miller <davem@davemloft.net>2008-02-12 22:03:25 -0800
commitfee54fa517bef1de2c10a1a3e918228cc59dce90 (patch)
treef0463f0149fb6456ca964747906028989fa6856f /net/core/skbuff.c
parent[IPV6]: Fix IPsec datagram fragmentation (diff)
downloadlinux-dev-fee54fa517bef1de2c10a1a3e918228cc59dce90.tar.xz
linux-dev-fee54fa517bef1de2c10a1a3e918228cc59dce90.zip
[NET]: Fix comment for skb_pull_rcsum
Fix comment for skb_pull_rcsum Signed-off-by: Urs Thuermann <urs@isnogud.escape.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r--net/core/skbuff.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 4e354221ec23..40dddcc6dc32 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -2106,11 +2106,10 @@ int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
/**
* skb_pull_rcsum - pull skb and update receive checksum
* @skb: buffer to update
- * @start: start of data before pull
* @len: length of data pulled
*
* This function performs an skb_pull on the packet and updates
- * update the CHECKSUM_COMPLETE checksum. It should be used on
+ * the CHECKSUM_COMPLETE checksum. It should be used on
* receive path processing instead of skb_pull unless you know
* that the checksum difference is zero (e.g., a valid IP header)
* or you are setting ip_summed to CHECKSUM_NONE.