Commit c1b5b21b authored by Jason Wang's avatar Jason Wang Committed by Ben Hutchings

macvtap: zerocopy: fix offset calculation when building skb

commit 3afc9621 upstream.

This patch fixes the offset calculation when building skb:

- offset1 were used as skb data offset not vector offset
- reset offset to zero only when we advance to next vector
Signed-off-by: default avatarJason Wang <jasowang@redhat.com>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 9046e979
...@@ -504,10 +504,11 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, ...@@ -504,10 +504,11 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
if (copy > size) { if (copy > size) {
++from; ++from;
--count; --count;
} offset = 0;
} else
offset += size;
copy -= size; copy -= size;
offset1 += size; offset1 += size;
offset = 0;
} }
if (len == offset1) if (len == offset1)
...@@ -518,13 +519,13 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, ...@@ -518,13 +519,13 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
int num_pages; int num_pages;
unsigned long base; unsigned long base;
len = from->iov_len - offset1; len = from->iov_len - offset;
if (!len) { if (!len) {
offset1 = 0; offset = 0;
++from; ++from;
continue; continue;
} }
base = (unsigned long)from->iov_base + offset1; base = (unsigned long)from->iov_base + offset;
size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT; size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
num_pages = get_user_pages_fast(base, size, 0, &page[i]); num_pages = get_user_pages_fast(base, size, 0, &page[i]);
if ((num_pages != size) || if ((num_pages != size) ||
...@@ -545,7 +546,7 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from, ...@@ -545,7 +546,7 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
len -= size; len -= size;
i++; i++;
} }
offset1 = 0; offset = 0;
++from; ++from;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment