From: majianpeng Date: Wed, 21 Aug 2013 07:02:51 +0000 (+0800) Subject: ceph: allow sync_read/write return partial successed size of read/write. X-Git-Tag: firefly_0821_release~176^2~5276^2~21 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ee7289bfadda5f4ef60884547ebc9989c8fb314a;p=firefly-linux-kernel-4.4.55.git ceph: allow sync_read/write return partial successed size of read/write. 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 --- diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 98b9035b2e81..20d0222c2e76 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -374,7 +374,7 @@ more: goto more; } - if (ret >= 0) { + if (read > 0) { ret = read; /* did we bounce off eof? */ if (pos + left > inode->i_size) @@ -612,6 +612,8 @@ out: if (check_caps) ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL); + } else if (ret != -EOLDSNAPC && written > 0) { + ret = written; } return ret; }