[3.11.y.z extended stable] Patch "ceph: allow sync_read/write return partial successed size of" has been added to staging queue
Luis Henriques
luis.henriques at canonical.com
Thu Jan 9 12:05:03 UTC 2014
This is a note to let you know that I have just added a patch titled
ceph: allow sync_read/write return partial successed size of
to the linux-3.11.y-queue branch of the 3.11.y.z extended stable tree
which can be found at:
http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.11.y-queue
If you, or anyone else, feels it should not be added to this tree, please
reply to this email.
For more information about the 3.11.y.z tree, see
https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable
Thanks.
-Luis
------
>From 204e82c31532aa5b2eff7a80be157d53e5a45d09 Mon Sep 17 00:00:00 2001
From: majianpeng <majianpeng at gmail.com>
Date: Wed, 21 Aug 2013 15:02:51 +0800
Subject: 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 at gmail.com>
Signed-off-by: Luis Henriques <luis.henriques at canonical.com>
---
fs/ceph/file.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 5f3b4ee..47f2cde 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -373,7 +373,7 @@ more:
goto more;
}
- if (ret >= 0) {
+ if (read > 0) {
ret = read;
/* did we bounce off eof? */
if (pos + left > inode->i_size)
@@ -611,6 +611,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;
}
--
1.8.3.2
More information about the kernel-team
mailing list