From: Chao Yu <chao@kernel.org>
To: Jaegeuk Kim <jaegeuk@kernel.org>,
linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH] f2fs: remove false-positive bug_on
Date: Wed, 31 May 2017 21:24:18 +0800 [thread overview]
Message-ID: <995a8c2b-d29f-5c82-6d7c-90e93770f620@kernel.org> (raw)
In-Reply-To: <20170526235923.31058-1-jaegeuk@kernel.org>
Hi Jaegeuk,
On 2017/5/27 7:59, Jaegeuk Kim wrote:
> If we got failure from both of create and evict_inode, we can hit this wrong
> bug_on.
>
> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> ---
> fs/f2fs/inode.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/fs/f2fs/inode.c b/fs/f2fs/inode.c
> index e53c784ab11e..5673b0bd83b5 100644
> --- a/fs/f2fs/inode.c
> +++ b/fs/f2fs/inode.c
> @@ -426,8 +426,6 @@ void f2fs_evict_inode(struct inode *inode)
> alloc_nid_failed(sbi, inode->i_ino);
> clear_inode_flag(inode, FI_FREE_NID);
> }
> - f2fs_bug_on(sbi, err &&
> - !exist_written_data(sbi, inode->i_ino, ORPHAN_INO));
We expect that we can keep the inode in orphan list in
handle_failed_inode path when inode page have been persisted, so that if
there is anything error in evice_inode, we can have another chance to
release inode resource during next mount.
Here we need to check this case, additionally, if we failed to add the
inode into orphan list in handle_failed_inode, we must have set
SBI_NEED_FSCK in cp pack, so we need check the case too.
So we can change the code to:
f2fs_bug_on(err && err != -ENOENT &&
(!exist_written_data(sbi, inode->i_ino, ORPHAN_INO) ||
!is_sbi_flag_set(sbi, SBI_NEED_FSCK));
How do you think?
Thanks,
> out_clear:
> fscrypt_put_encryption_info(inode, NULL);
> clear_inode(inode);
>
next prev parent reply other threads:[~2017-05-31 13:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-26 23:59 Jaegeuk Kim
2017-05-31 13:24 ` Chao Yu [this message]
2017-06-01 2:12 ` [f2fs-dev] " Jaegeuk Kim
2017-06-01 2:56 ` Chao Yu
2017-06-01 22:47 ` [f2fs-dev] [PATCH v2] " Jaegeuk Kim
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=995a8c2b-d29f-5c82-6d7c-90e93770f620@kernel.org \
--to=chao@kernel.org \
--cc=jaegeuk@kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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
Powered by JetHome