Commit 234a4267 authored by Jason Wang's avatar Jason Wang Committed by David S. Miller
Browse files

net: remove the useless comment in zerocopy_sg_from_iovec()

parent 0a57ec62
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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++;