aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph
diff options
context:
space:
mode:
authorYan, Zheng <zheng.z.yan@intel.com>2014-07-02 10:13:00 +0800
committerIlya Dryomov <ilya.dryomov@inktank.com>2014-07-08 15:08:47 +0400
commit5aaa432ad9ecbfb6587f241747ac1d4a8f10e7e7 (patch)
treebd4863bda94cbb94f6fb6a271aa991ec669471ed /fs/ceph
parentceph: include time stamp in replayed MDS requests (diff)
downloadlinux-dev-5aaa432ad9ecbfb6587f241747ac1d4a8f10e7e7.tar.xz
linux-dev-5aaa432ad9ecbfb6587f241747ac1d4a8f10e7e7.zip
ceph: pass proper page offset to copy_page_to_iter()
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r--fs/ceph/file.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 19af25dff644..fec9ddcf1528 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -470,8 +470,11 @@ static ssize_t ceph_sync_read(struct kiocb *iocb, struct iov_iter *i,
size_t left = ret;
while (left) {
- int copy = min_t(size_t, PAGE_SIZE, left);
- l = copy_page_to_iter(pages[k++], 0, copy, i);
+ size_t page_off = off & ~PAGE_MASK;
+ size_t copy = min_t(size_t,
+ PAGE_SIZE - page_off, left);
+ l = copy_page_to_iter(pages[k++], page_off,
+ copy, i);
off += l;
left -= l;
if (l < copy)