linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nikolay Borisov <nborisov@suse.com>
To: Qu Wenruo <wqu@suse.de>, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH 3/5] btrfs: extent_io: Kill the BUG_ON() in flush_write_bio()
Date: Thu, 17 Jan 2019 10:52:06 +0200	[thread overview]
Message-ID: <5a068056-c8ad-e6db-7f7d-c181b0842f01@suse.com> (raw)
In-Reply-To: <52327705-1e10-49f0-f05e-ab13d051c42b@suse.de>



On 17.01.19 г. 10:28 ч., Qu Wenruo wrote:
> 
> 
> On 2019/1/17 下午4:22, Nikolay Borisov wrote:
>>
>>
>> On 17.01.19 г. 9:48 ч., Qu Wenruo wrote:
>>> This BUG_ON() is really just a crappy way to workaround the _must_check
>>> attribute of submit_one_bio().
>>>
>>> Now kill the BUG_ON() and allow flush_write_bio() to return error
>>> number.
>>>
>>> Also add _must_check attribute to flush_write_bio(), and modify all
>>> callers to handle the possible error returned.
>>>
>>> Signed-off-by: Qu Wenruo <wqu@suse.com>
>>> ---
>>>  fs/btrfs/extent_io.c | 64 +++++++++++++++++++++++++++++++-------------
>>>  1 file changed, 46 insertions(+), 18 deletions(-)
>>>
>>> diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
>>> index 8a2335713a2d..a773bc46badc 100644
>>> --- a/fs/btrfs/extent_io.c
>>> +++ b/fs/btrfs/extent_io.c
>>> @@ -169,15 +169,15 @@ static int __must_check submit_one_bio(struct bio *bio, int mirror_num,
>>>  	return blk_status_to_errno(ret);
>>>  }
>>>  
>>> -static void flush_write_bio(struct extent_page_data *epd)
>>> +static int __must_check flush_write_bio(struct extent_page_data *epd)
>>>  {
>>> -	if (epd->bio) {
>>> -		int ret;
>>> +	int ret = 0;
>>>  
>>> +	if (epd->bio) {
>>>  		ret = submit_one_bio(epd->bio, 0, 0);
>>> -		BUG_ON(ret < 0); /* -ENOMEM */
>>>  		epd->bio = NULL;
>>>  	}
>>> +	return ret;
>>>  }
>>>  
>>>  int __init extent_io_init(void)
>>> @@ -3509,8 +3509,10 @@ lock_extent_buffer_for_io(struct extent_buffer *eb,
>>>  	int ret = 0;
>>>  
>>>  	if (!btrfs_try_tree_write_lock(eb)) {
>>> +		ret = flush_write_bio(epd);
>>> +		if (ret < 0)
>>> +			return ret;
>>>  		flush = 1;
>>> -		flush_write_bio(epd);
>>>  		btrfs_tree_lock(eb);
>>>  	}
>>>  
>>> @@ -3519,7 +3521,9 @@ lock_extent_buffer_for_io(struct extent_buffer *eb,
>>>  		if (!epd->sync_io)
>>>  			return 0;
>>>  		if (!flush) {
>>> -			flush_write_bio(epd);
>>> +			ret = flush_write_bio(epd);
>>> +			if (ret < 0)
>>> +				return ret;
>>>  			flush = 1;
>>>  		}
>>>  		while (1) {
>>> @@ -3560,7 +3564,9 @@ lock_extent_buffer_for_io(struct extent_buffer *eb,
>>>  
>>>  		if (!trylock_page(p)) {
>>>  			if (!flush) {
>>> -				flush_write_bio(epd);
>>> +				ret = flush_write_bio(epd);
>>> +				if (ret < 0)
>>> +					return ret;
>>
>> Can't you end up with partially locked pages here? Are you sure that
>> flush_write_bio will ALWAYS be executed when i = 0? If that\'s the case
>> then I think an assert(i == 0) is in order there.
> 
> An ASSERT() indeed makes sense here.
> 
> Although I could also make it better by recording the failed page number
> and unlock those already locked pages.

Unlocking is the correct way to handle it, the assert would be there to
prove that you won't ever need the unlocking code. If it triggers then
this case must be handled.

> 
> I'm OK either way.
> 
> Thanks,
> Qu
> 
>>
>>>  				flush = 1;
>>>  			}
>>>  			lock_page(p);
>>
>> <snip>
>>

  reply	other threads:[~2019-01-17  8:52 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-17  7:48 [PATCH 0/5] btrfs: Enhancement to tree block validation Qu Wenruo
2019-01-17  7:48 ` [PATCH 1/5] btrfs: Always output error message when key/level verification fails Qu Wenruo
2019-01-17  7:48 ` [PATCH 2/5] btrfs: extent_io: Kill the forward declaration of flush_write_bio() Qu Wenruo
2019-01-17  7:50   ` Nikolay Borisov
2019-01-17  7:48 ` [PATCH 3/5] btrfs: extent_io: Kill the BUG_ON() in flush_write_bio() Qu Wenruo
2019-01-17  8:22   ` Nikolay Borisov
2019-01-17  8:28     ` Qu Wenruo
2019-01-17  8:52       ` Nikolay Borisov [this message]
2019-01-17  7:48 ` [PATCH 4/5] btrfs: disk-io: Show the timing of corrupted tree block explicitly Qu Wenruo
2019-01-17  8:42   ` Nikolay Borisov
2019-01-17  7:48 ` [PATCH 5/5] btrfs: Do mandatory tree block check before submitting bio Qu Wenruo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5a068056-c8ad-e6db-7f7d-c181b0842f01@suse.com \
    --to=nborisov@suse.com \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=wqu@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).