summaryrefslogtreecommitdiffstats
path: root/mm/iov_iter.c
diff options
context:
space:
mode:
authorAl Viro2014-04-05 01:23:46 +0200
committerAl Viro2014-05-06 23:39:45 +0200
commit81055e584f9d743cb13dc7944923d817c20f089d (patch)
tree06213185809c19175258bdb12f07204c79368cea /mm/iov_iter.c
parentbury generic_file_aio_{read,write} (diff)
downloadkernel-qcow2-linux-81055e584f9d743cb13dc7944923d817c20f089d.tar.gz
kernel-qcow2-linux-81055e584f9d743cb13dc7944923d817c20f089d.tar.xz
kernel-qcow2-linux-81055e584f9d743cb13dc7944923d817c20f089d.zip
optimize copy_page_{to,from}_iter()
if we'd ended up in the end of a segment, jump to the beginning of the next one (iov_offset = 0, iov++), rather than having the next primitive deal with that. Ought to be folded back... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'mm/iov_iter.c')
-rw-r--r--mm/iov_iter.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mm/iov_iter.c b/mm/iov_iter.c
index 081e3273085b..fcdaaab438b6 100644
--- a/mm/iov_iter.c
+++ b/mm/iov_iter.c
@@ -74,6 +74,10 @@ size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
}
kunmap(page);
done:
+ if (skip == iov->iov_len) {
+ iov++;
+ skip = 0;
+ }
i->count -= wanted - bytes;
i->nr_segs -= iov - i->iov;
i->iov = iov;
@@ -152,6 +156,10 @@ size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
}
kunmap(page);
done:
+ if (skip == iov->iov_len) {
+ iov++;
+ skip = 0;
+ }
i->count -= wanted - bytes;
i->nr_segs -= iov - i->iov;
i->iov = iov;