From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Chao Yu <chao2.yu@samsung.com>
Cc: Changman Lee <cm224.lee@samsung.com>,
linux-f2fs-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] f2fs: don't discard next free dnode page for an umount checkpoint
Date: Mon, 2 Feb 2015 15:37:34 -0800 [thread overview]
Message-ID: <20150202233734.GD34575@jaegeuk-mac02.mot.com> (raw)
In-Reply-To: <008c01d03d35$62ceb7a0$286c26e0$@samsung.com>
Hi Chao,
On Sat, Jan 31, 2015 at 05:06:59PM +0800, Chao Yu wrote:
> Previously, discard_next_dnode is added before a checkpoint to prevent that we
> may meet a garbage dnode page readed from next free blkaddr in recover flow.
>
> Since f2fs will skip recovery flow for a clean umount image, this condition will
> never happen.
>
> So it's safe for us to leave next free dnode as it is in an umount checkpoint.
>
> Signed-off-by: Chao Yu <chao2.yu@samsung.com>
> ---
> fs/f2fs/checkpoint.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
> index f7cdcad..991fd0a 100644
> --- a/fs/f2fs/checkpoint.c
> +++ b/fs/f2fs/checkpoint.c
> @@ -905,8 +905,12 @@ static void do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
> /*
> * This avoids to conduct wrong roll-forward operations and uses
> * metapages, so should be called prior to sync_meta_pages below.
> + * But if we are in an umount checkpoint, we'd better skip this
> + * because we will not enter recovery flow to use the next free
> + * blkaddr when mounting it.
> */
> - discard_next_dnode(sbi, NEXT_FREE_BLKADDR(sbi, curseg));
> + if (cpc->reason != CP_UMOUNT)
> + discard_next_dnode(sbi, NEXT_FREE_BLKADDR(sbi, curseg));
The reason for discard_next_dnode is to avoid wrong execution due to old
mkfs.f2fs which remains gabage data.
It needs to do all the time.
Thanks,
>
> /* Flush all the NAT/SIT pages */
> while (get_pages(sbi, F2FS_DIRTY_META)) {
> --
> 2.2.1
next prev parent reply other threads:[~2015-02-02 23:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-31 9:06 Chao Yu
2015-02-02 23:37 ` Jaegeuk Kim [this message]
2015-02-05 8:16 ` Chao Yu
2015-02-06 6:22 ` 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=20150202233734.GD34575@jaegeuk-mac02.mot.com \
--to=jaegeuk@kernel.org \
--cc=chao2.yu@samsung.com \
--cc=cm224.lee@samsung.com \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--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
all inboxes | Powered by JetHome®