From: Jason Wang Date: Tue, 6 Aug 2013 09:45:06 +0000 (+0800) Subject: net: remove the useless comment in zerocopy_sg_from_iovec() X-Git-Tag: v3.12-rc1~132^2~331 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=234a4267085e85d0cc5552c340833bb2d82a50e7;p=platform%2Fkernel%2Flinux-stable.git net: remove the useless comment in zerocopy_sg_from_iovec() Signed-off-by: Jason Wang Signed-off-by: David S. Miller --- diff --git a/net/core/datagram.c b/net/core/datagram.c index bec0867..a8a795c 100644 --- a/net/core/datagram.c +++ b/net/core/datagram.c @@ -653,7 +653,6 @@ int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, int off = base & ~PAGE_MASK; int size = min_t(int, len, PAGE_SIZE - off); skb_fill_page_desc(skb, i, page[i], off, size); - /* increase sk_wmem_alloc */ base += size; len -= size; i++;