aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authormajianpeng <majianpeng@gmail.com>2013-08-21 03:02:51 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-09 15:24:25 -0500
commit30379f4553bae684a928c6bdd9dc606fd0ef6093 (patch)
tree01f0fbcf51a602ae65f2e0760554377c5cfb0245 /fs
parent533bc2950e085ee99225655f60276760c00af31f (diff)
ceph: allow sync_read/write return partial successed size of read/write.
commit ee7289bfadda5f4ef60884547ebc9989c8fb314a upstream. For sync_read/write, it may do multi stripe operations.If one of those met erro, we return the former successed size rather than a error value. There is a exception for write-operation met -EOLDSNAPC.If this occur,we retry the whole write again. Signed-off-by: Jianpeng Ma <majianpeng@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/file.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 1ac0a59867dc..5de16f5ac7e9 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -373,7 +373,7 @@ more:
373 goto more; 373 goto more;
374 } 374 }
375 375
376 if (ret >= 0) { 376 if (read > 0) {
377 ret = read; 377 ret = read;
378 /* did we bounce off eof? */ 378 /* did we bounce off eof? */
379 if (pos + left > inode->i_size) 379 if (pos + left > inode->i_size)
@@ -611,6 +611,8 @@ out:
611 if (check_caps) 611 if (check_caps)
612 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, 612 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY,
613 NULL); 613 NULL);
614 } else if (ret != -EOLDSNAPC && written > 0) {
615 ret = written;
614 } 616 }
615 return ret; 617 return ret;
616} 618}