From: Dave Kleikamp Date: Fri, 14 Jun 2013 20:54:12 +0000 (-0500) Subject: iov_iter: ii_iovec_copy_to_user should pre-fault user pages X-Git-Tag: next-20130822~107^2~26 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9ed93a09f292d3082eedf998f8e6b5f681a4c160;p=karo-tx-linux.git iov_iter: ii_iovec_copy_to_user should pre-fault user pages This duplicates the optimization in file_read_actor as a later patch will replace it with a call to __iov_iter_copy_to_user(). Signed-off-by: Dave Kleikamp --- diff --git a/fs/iov-iter.c b/fs/iov-iter.c index 6cb6be0f18e8..59f9556ac4d2 100644 --- a/fs/iov-iter.c +++ b/fs/iov-iter.c @@ -80,17 +80,32 @@ static size_t ii_iovec_copy_to_user(struct page *page, return 0; } - kaddr = kmap(page); if (likely(i->nr_segs == 1)) { int left; char __user *buf = iov->iov_base + i->iov_offset; + /* + * Faults on the destination of a read are common, so do it + * before taking the kmap. + */ + if (!fault_in_pages_writeable(buf, bytes)) { + kaddr = kmap_atomic(page); + left = __copy_to_user_inatomic(buf, kaddr + offset, + bytes); + kunmap_atomic(kaddr); + if (left == 0) + goto success; + } + kaddr = kmap(page); left = copy_to_user(buf, kaddr + offset, bytes); + kunmap(page); +success: copied = bytes - left; } else { + kaddr = kmap(page); copied = __iovec_copy_to_user(kaddr + offset, iov, i->iov_offset, bytes, 0); + kunmap(page); } - kunmap(page); return copied; }