All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: allow sync_read/write return partial successed size of read/write.
@ 2013-08-21  7:02 majianpeng
  2013-08-22  5:12 ` Sage Weil
  0 siblings, 1 reply; 3+ messages in thread
From: majianpeng @ 2013-08-21  7:02 UTC (permalink / raw)
  To: sage; +Cc: ceph-devel

Hi Sage:
	This patch based on my previous patch"ceph: fix bugs about handling short-read for sync read mode".
I can't see this patch in ceph-client#testing.Maybe you forget it ?

Thanks!
Jianpeng Ma

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>
---
 fs/ceph/file.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 69c4669..dd525c5 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,7 +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.1.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ceph: allow sync_read/write return partial successed size of read/write.
  2013-08-21  7:02 [PATCH] ceph: allow sync_read/write return partial successed size of read/write majianpeng
@ 2013-08-22  5:12 ` Sage Weil
  2013-08-22  5:14   ` Yan, Zheng
  0 siblings, 1 reply; 3+ messages in thread
From: Sage Weil @ 2013-08-22  5:12 UTC (permalink / raw)
  To: majianpeng, zheng.z.yan; +Cc: ceph-devel

On Wed, 21 Aug 2013, majianpeng wrote:
> Hi Sage:
> 	This patch based on my previous patch"ceph: fix bugs about handling short-read for sync read mode".
> I can't see this patch in ceph-client#testing.Maybe you forget it ?

Whoops, I did!  I've pulled both patches into the testing branch now. 

Yan, did you want to look at this?
sage

> 
> Thanks!
> Jianpeng Ma
> 
> 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>
> ---
>  fs/ceph/file.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ceph/file.c b/fs/ceph/file.c
> index 69c4669..dd525c5 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,7 +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.1.2
> N?????r??y????b?X????v?^?)??{.n?+???z?]z???{ay?\x1d?????,j\a??f???h???z?\x1e?w???\f???j:+v???w?j?m????\a????zZ+???????j"??!?i

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ceph: allow sync_read/write return partial successed size of read/write.
  2013-08-22  5:12 ` Sage Weil
@ 2013-08-22  5:14   ` Yan, Zheng
  0 siblings, 0 replies; 3+ messages in thread
From: Yan, Zheng @ 2013-08-22  5:14 UTC (permalink / raw)
  To: Sage Weil; +Cc: majianpeng, ceph-devel

On 08/22/2013 01:12 PM, Sage Weil wrote:
> On Wed, 21 Aug 2013, majianpeng wrote:
>> Hi Sage:
>> 	This patch based on my previous patch"ceph: fix bugs about handling short-read for sync read mode".
>> I can't see this patch in ceph-client#testing.Maybe you forget it ?
> 
> Whoops, I did!  I've pulled both patches into the testing branch now. 
> 
> Yan, did you want to look at this?

the patch looks good.

Yan, Zheng

> sage
> 
>>
>> Thanks!
>> Jianpeng Ma
>>
>> 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>
>> ---
>>  fs/ceph/file.c | 5 +++--
>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/ceph/file.c b/fs/ceph/file.c
>> index 69c4669..dd525c5 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,7 +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.1.2
>> N?????r??y????b?X????v?^?)??{.n?+???z?]z???{ay?\x1d?????,j\a??f???h???z?\x1e?w???\f???j:+v???w?j?m????\a????zZ+???????j"??!?i


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-08-22  5:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-21  7:02 [PATCH] ceph: allow sync_read/write return partial successed size of read/write majianpeng
2013-08-22  5:12 ` Sage Weil
2013-08-22  5:14   ` Yan, Zheng

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.