linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 09/18] btrfs: Fix return value of read_extent_buffer_pages() when lock page failed
@ 2010-03-25 12:33 Miao Xie
  2010-03-31  0:09 ` Chris Mason
  0 siblings, 1 reply; 3+ messages in thread
From: Miao Xie @ 2010-03-25 12:33 UTC (permalink / raw)
  To: Chris Mason, Linux Btrfs

From: Zhao Lei <zhaolei@cn.fujitsu.com>

read_extent_buffer_pages() should return error value instead of 0 when
lock page failed, we fix this problem.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
---
 fs/btrfs/extent_io.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index bdfbfa6..3194c79 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -3419,8 +3419,10 @@ int read_extent_buffer_pages(struct extent_io_tree *tree,
 	for (i = start_i; i < num_pages; i++) {
 		page = extent_buffer_page(eb, i);
 		if (!wait) {
-			if (!trylock_page(page))
+			if (!trylock_page(page)) {
+				ret = -EIO;
 				goto unlock_exit;
+			}
 		} else {
 			lock_page(page);
 		}
-- 
1.6.5.2



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

* Re: [PATCH 09/18] btrfs: Fix return value of read_extent_buffer_pages() when lock page failed
  2010-03-25 12:33 [PATCH 09/18] btrfs: Fix return value of read_extent_buffer_pages() when lock page failed Miao Xie
@ 2010-03-31  0:09 ` Chris Mason
  2010-03-31  4:04   ` Zhaolei
  0 siblings, 1 reply; 3+ messages in thread
From: Chris Mason @ 2010-03-31  0:09 UTC (permalink / raw)
  To: Miao Xie; +Cc: Linux Btrfs

On Thu, Mar 25, 2010 at 08:33:27PM +0800, Miao Xie wrote:
> From: Zhao Lei <zhaolei@cn.fujitsu.com>
> 
> read_extent_buffer_pages() should return error value instead of 0 when
> lock page failed, we fix this problem.

[ Thanks for all of these patches! ]

This isn't strictly an IO error, the caller has said they are not
willing to wait, so we don't wait.  That's different from finding a page
where the IO had failed.

In general we ignore the errors until the caller is willing to wait for
the result.

-chris

> 
> Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
> Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
> ---
>  fs/btrfs/extent_io.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
> index bdfbfa6..3194c79 100644
> --- a/fs/btrfs/extent_io.c
> +++ b/fs/btrfs/extent_io.c
> @@ -3419,8 +3419,10 @@ int read_extent_buffer_pages(struct extent_io_tree *tree,
>  	for (i = start_i; i < num_pages; i++) {
>  		page = extent_buffer_page(eb, i);
>  		if (!wait) {
> -			if (!trylock_page(page))
> +			if (!trylock_page(page)) {
> +				ret = -EIO;
>  				goto unlock_exit;
> +			}
>  		} else {
>  			lock_page(page);
>  		}
> -- 
> 1.6.5.2
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Re: [PATCH 09/18] btrfs: Fix return value of read_extent_buffer_pages() when lock page failed
  2010-03-31  0:09 ` Chris Mason
@ 2010-03-31  4:04   ` Zhaolei
  0 siblings, 0 replies; 3+ messages in thread
From: Zhaolei @ 2010-03-31  4:04 UTC (permalink / raw)
  To: Chris Mason, Miao Xie, Linux Btrfs

Chris Mason wrote:
> On Thu, Mar 25, 2010 at 08:33:27PM +0800, Miao Xie wrote:
>> From: Zhao Lei <zhaolei@cn.fujitsu.com>
>>
>> read_extent_buffer_pages() should return error value instead of 0 when
>> lock page failed, we fix this problem.
> 
> [ Thanks for all of these patches! ]
> 
> This isn't strictly an IO error, the caller has said they are not
> willing to wait, so we don't wait.  That's different from finding a page
> where the IO had failed.
> 
> In general we ignore the errors until the caller is willing to wait for
> the result.
> 
> -chris

Hello, chris

Thanks for your response.
I'll drop this patch.

Thanks
Zhaolei

>> Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
>> Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
>> ---
>>  fs/btrfs/extent_io.c |    4 +++-
>>  1 files changed, 3 insertions(+), 1 deletions(-)
>>
>> diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
>> index bdfbfa6..3194c79 100644
>> --- a/fs/btrfs/extent_io.c
>> +++ b/fs/btrfs/extent_io.c
>> @@ -3419,8 +3419,10 @@ int read_extent_buffer_pages(struct extent_io_tree *tree,
>>  	for (i = start_i; i < num_pages; i++) {
>>  		page = extent_buffer_page(eb, i);
>>  		if (!wait) {
>> -			if (!trylock_page(page))
>> +			if (!trylock_page(page)) {
>> +				ret = -EIO;
>>  				goto unlock_exit;
>> +			}
>>  		} else {
>>  			lock_page(page);
>>  		}
>> -- 
>> 1.6.5.2
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 



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

end of thread, other threads:[~2010-03-31  4:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-25 12:33 [PATCH 09/18] btrfs: Fix return value of read_extent_buffer_pages() when lock page failed Miao Xie
2010-03-31  0:09 ` Chris Mason
2010-03-31  4:04   ` Zhaolei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).