aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorYehuda Sadeh <yehuda@hq.newdream.net>2009-12-31 15:04:58 -0500
committerSage Weil <sage@newdream.net>2010-01-06 19:05:20 -0500
commit6a4ef48103a78a46b80e07fcd8ac4edda0c7128f (patch)
treeb9cf0fcb4e83400b10e3e3940f274dd9724a2499 /fs
parent93cea5bebf91319095db866163a7e35c3e77d8f2 (diff)
ceph: fix copy_user_to_page_vector()
The function was broken in the case where there was more than one page involved, broke the ceph sync_write case. Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net> Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index fc8aff4767d3..2d88c805a56c 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -350,10 +350,10 @@ static int copy_user_to_page_vector(struct page **pages,
350 return -EFAULT; 350 return -EFAULT;
351 data += l - bad; 351 data += l - bad;
352 left -= l - bad; 352 left -= l - bad;
353 if (po) { 353 po += l - bad;
354 po += l - bad; 354 if (po == PAGE_CACHE_SIZE) {
355 if (po == PAGE_CACHE_SIZE) 355 po = 0;
356 po = 0; 356 i++;
357 } 357 }
358 } 358 }
359 return len; 359 return len;