Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1711809

Re: [PATCH] f2fs: let fill_super handle roll-forward errors

From Jaegeuk Kim <jaegeuk@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH] f2fs: let fill_super handle roll-forward errors
Date 2017-08-15 05:30 +0200
Message-ID <ueAIi-4oo-11@gated-at.bofh.it> (permalink)
References <ud6jf-4VF-1@gated-at.bofh.it> <uez9x-3gj-53@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 08/15, Chao Yu wrote:
> Hi Jaegeuk,
> 
> On 2017/8/11 8:42, Jaegeuk Kim wrote:
> > If we set CP_ERROR_FLAG in roll-forward error, f2fs is no longer to proceed
> > any IOs due to f2fs_cp_error(). But, for example, if some stale data is involved
> > on roll-forward process, we're able to get -ENOENT, getting fs stuck.
> > If we get any error, let fill_super set SBI_NEED_FSCK and try to recover back
> > to stable point.
> 
> Before that, we have cleaned up all node/meta page cache, so we will get back to
> last checkpoint status, means losing fsynced datas for ever.
> 
> Would it be better to just leave message reminding user to mount with
> disable_roll_forward or run fsck offline.

We can't rely on user for this, since fsck cannot recover this, resulting in
infinite mount failure. The only way is to disable roll-forward recovery, which
is same as returning error here.

Thanks,

> 
> Thanks,
> 
> > 
> > Cc: <stable@vger.kernel.org>
> > Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> > ---
> >  fs/f2fs/recovery.c | 2 --
> >  1 file changed, 2 deletions(-)
> > 
> > diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> > index a3d02613934a..f707d810c87d 100644
> > --- a/fs/f2fs/recovery.c
> > +++ b/fs/f2fs/recovery.c
> > @@ -649,8 +649,6 @@ int recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only)
> >  	}
> >  
> >  	clear_sbi_flag(sbi, SBI_POR_DOING);
> > -	if (err)
> > -		set_ckpt_flags(sbi, CP_ERROR_FLAG);
> >  	mutex_unlock(&sbi->cp_mutex);
> >  
> >  	/* let's drop all the directory inodes for clean checkpoint */
> > 

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH] f2fs: let fill_super handle roll-forward errors Chao Yu <yuchao0@huawei.com> - 2017-08-15 03:50 +0200
  Re: [PATCH] f2fs: let fill_super handle roll-forward errors Jaegeuk Kim <jaegeuk@kernel.org> - 2017-08-15 05:30 +0200
    Re: [PATCH] f2fs: let fill_super handle roll-forward errors Chao Yu <yuchao0@huawei.com> - 2017-08-15 13:50 +0200
      Re: [PATCH] f2fs: let fill_super handle roll-forward errors Jaegeuk Kim <jaegeuk@kernel.org> - 2017-08-15 18:50 +0200
        Re: [PATCH] f2fs: let fill_super handle roll-forward errors Chao Yu <yuchao0@huawei.com> - 2017-08-16 03:20 +0200

csiph-web