All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Ju Hyung Park <qkrwngud825@gmail.com>
Cc: linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [PATCH v2] f2fs: clear cold data flag if IO is not counted
Date: Fri, 19 Oct 2018 15:58:13 -0700	[thread overview]
Message-ID: <20181019225813.GA11541@jaegeuk-macbookpro.roam.corp.google.com> (raw)
In-Reply-To: <CAD14+f1EsMBiH0vkFPQ3wAa2-xOp+rpGGhmbTd+JfLpCGYh5jA@mail.gmail.com>

On 10/20, Ju Hyung Park wrote:
> This does seem to fix the problem I've been having.
> 
> I was encountering all I/Os to be blocked on my Android device
> almost on a daily basis, but after this patch I'm rock solid for almost a week.
> 
> I'd appreciate it if you could add the following tags:
> Reported-by: Park Ju Hyung <qkrwngud825@gmail.com>
> Tested-by: Park Ju Hyung <qkrwngud825@gmail.com>
> 
> Also, a little additional note would be helpful
> for those who are unfamiliar with f2fs:
> This fixes a deadlock causing all I/Os to be blocked during heavy GC.

Cool. Please check the below. :P

https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git/commit/?h=dev&id=b921ec4e7fb5df13f805bc04375ed529faa095ae

Thanks,

> 
> Thanks,
> On Wed, Oct 17, 2018 at 11:34 AM Jaegeuk Kim <jaegeuk@kernel.org> wrote:
> >
> > This reverts commit 66110abc4c931f879d70e83e1281f891699364bf.
> >
> > If we clear the cold data flag out of the writeback flow, we can miscount
> > -1 by end_io.
> >
> > Balancing F2FS Async:
> >  - IO (CP:    1, Data:   -1, Flush: (   0    0    1), Discard: (   ...
> >
> > GC thread:                              IRQ
> > - move_data_page()
> >  - set_page_dirty()
> >   - clear_cold_data()
> >                                         - f2fs_write_end_io()
> >                                          - type = WB_DATA_TYPE(page);
> >                                            here, we get wrong type
> >                                          - dec_page_count(sbi, type);
> >  - f2fs_wait_on_page_writeback()
> >
> > Cc: <stable@vger.kernel.org>
> > Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> > ---
> >  fs/f2fs/data.c | 4 ----
> >  1 file changed, 4 deletions(-)
> >
> > diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
> > index 3f272c18fb61..0d0b4dd55b04 100644
> > --- a/fs/f2fs/data.c
> > +++ b/fs/f2fs/data.c
> > @@ -2650,10 +2650,6 @@ static int f2fs_set_data_page_dirty(struct page *page)
> >         if (!PageUptodate(page))
> >                 SetPageUptodate(page);
> >
> > -       /* don't remain PG_checked flag which was set during GC */
> > -       if (is_cold_data(page))
> > -               clear_cold_data(page);
> > -
> >         if (f2fs_is_atomic_file(inode) && !f2fs_is_commit_atomic_write(inode)) {
> >                 if (!IS_ATOMIC_WRITTEN_PAGE(page)) {
> >                         f2fs_register_inmem_page(inode, page);
> > --
> > 2.19.0.605.g01d371f741-goog
> >
> >
> >
> > _______________________________________________
> > Linux-f2fs-devel mailing list
> > Linux-f2fs-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

      reply	other threads:[~2018-10-19 22:58 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-10 21:22 [PATCH] f2fs: clear cold data flag if IO is not counted Jaegeuk Kim
2018-10-15 12:38 ` [f2fs-dev] " Chao Yu
2018-10-15 12:38   ` Chao Yu
2018-10-15 23:08   ` Jaegeuk Kim
2018-10-16  1:31     ` Chao Yu
2018-10-16  1:31       ` Chao Yu
2018-10-16  3:10       ` [f2fs-dev] " Jaegeuk Kim
2018-10-17  1:30         ` Chao Yu
2018-10-17  1:30           ` Chao Yu
2018-10-17  2:43           ` Jaegeuk Kim
2018-10-17  2:34 ` [PATCH v2] " Jaegeuk Kim
2018-10-17  2:50   ` [f2fs-dev] " Chao Yu
2018-10-17  2:50     ` Chao Yu
2018-10-19 18:16   ` Ju Hyung Park
2018-10-19 22:58     ` Jaegeuk Kim [this message]

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=20181019225813.GA11541@jaegeuk-macbookpro.roam.corp.google.com \
    --to=jaegeuk@kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=qkrwngud825@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.