diff mbox

[2/2] s/jffs2_erase_pending_trigger/jffs2_garbage_collect_trigger/

Message ID OFACBFB4CF.DBE14C44-ONC12576CC.004F427F-C12576CC.004F68EA@transmode.se
State New, archived
Headers show

Commit Message

Joakim Tjernlund Feb. 16, 2010, 2:27 p.m. UTC
Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/16 09:59:49:
>
> On Mon, 2010-02-15 at 17:03 +0100, Joakim Tjernlund wrote:
> > Since erasing is done in GC now, trigger GC instead.
> > jffs2_erase_pending_trigger() renamed to jffs2_dirty_trigger() and
> > used by wbuf. Remove call jffs2_garbage_collect_trigger() in
> > write_super()
> >
> > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > ---
> >  fs/jffs2/erase.c    |    4 +---
> >  fs/jffs2/gc.c       |    2 +-
> >  fs/jffs2/nodemgmt.c |    4 ++--
> >  fs/jffs2/os-linux.h |    2 +-
> >  fs/jffs2/scan.c     |    2 +-
> >  fs/jffs2/super.c    |    1 -
> >  fs/jffs2/wbuf.c     |    8 ++++----
> >  7 files changed, 10 insertions(+), 13 deletions(-)
> >
> > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > index 1ca2559..fdf9418 100644
> > --- a/fs/jffs2/erase.c
> > +++ b/fs/jffs2/erase.c
> > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> *c, struct jffs2_eraseblo
> >     list_move_tail(&jeb->list, &c->erase_complete_list);
> >     spin_unlock(&c->erase_completion_lock);
> >     mutex_unlock(&c->erase_free_sem);
> > -   /* Ensure that kupdated calls us again to mark them clean */
> > -   jffs2_erase_pending_trigger(c);
> >  }
> >
> >  static void jffs2_erase_failed(struct jffs2_sb_info *c, struct
> jffs2_eraseblock *jeb, uint32_t bad_offset)
> > @@ -492,7 +490,7 @@ filebad:
> >
> >  refile:
> >     /* Stick it back on the list from whence it came and come back later */
> > -   jffs2_erase_pending_trigger(c);
> > +   jffs2_garbage_collect_trigger(c);
>
> But then you make the code more confusing. Indeed, readability becomes
> worse.
>
> I would just change 'jffs2_erase_pending_trigger()' and make it wake up
> the GC thread, just like 'jffs2_garbage_collect_trigger()'...

Here we go then:

From 96a4a9dc054f2dbd57e180e202f69c9645536e0d Mon Sep 17 00:00:00 2001
From: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Date: Tue, 16 Feb 2010 15:18:31 +0100
Subject: [PATCH] jffs2: Make jffs2_erase_pending_trigger() initiate GC.

Since erasing is now in the GC thread, erases should trigger
the GC task instead.
wbuf.c still wants to flush its buffer via write_super so
invent jffs2_dirty_trigger() and use that in wbuf.
Remove surplus call to jffs2_erase_pending_trigger() in erase.c
and remove jffs2_garbage_collect_trigger() from write_super as
of now write_super() should only commit dirty data to disk.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
---
 fs/jffs2/erase.c    |    2 --
 fs/jffs2/os-linux.h |    9 +++++++--
 fs/jffs2/super.c    |    1 -
 fs/jffs2/wbuf.c     |    2 +-
 4 files changed, 8 insertions(+), 6 deletions(-)

--
1.6.4.4

Comments

Artem Bityutskiy Feb. 17, 2010, 7:18 a.m. UTC | #1
On Tue, 2010-02-16 at 15:27 +0100, Joakim Tjernlund wrote:
> Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/16 09:59:49:
> >
> > On Mon, 2010-02-15 at 17:03 +0100, Joakim Tjernlund wrote:
> > > Since erasing is done in GC now, trigger GC instead.
> > > jffs2_erase_pending_trigger() renamed to jffs2_dirty_trigger() and
> > > used by wbuf. Remove call jffs2_garbage_collect_trigger() in
> > > write_super()
> > >
> > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > ---
> > >  fs/jffs2/erase.c    |    4 +---
> > >  fs/jffs2/gc.c       |    2 +-
> > >  fs/jffs2/nodemgmt.c |    4 ++--
> > >  fs/jffs2/os-linux.h |    2 +-
> > >  fs/jffs2/scan.c     |    2 +-
> > >  fs/jffs2/super.c    |    1 -
> > >  fs/jffs2/wbuf.c     |    8 ++++----
> > >  7 files changed, 10 insertions(+), 13 deletions(-)
> > >
> > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > index 1ca2559..fdf9418 100644
> > > --- a/fs/jffs2/erase.c
> > > +++ b/fs/jffs2/erase.c
> > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > *c, struct jffs2_eraseblo
> > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > >     spin_unlock(&c->erase_completion_lock);
> > >     mutex_unlock(&c->erase_free_sem);
> > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > -   jffs2_erase_pending_trigger(c);
> > >  }
> > >
> > >  static void jffs2_erase_failed(struct jffs2_sb_info *c, struct
> > jffs2_eraseblock *jeb, uint32_t bad_offset)
> > > @@ -492,7 +490,7 @@ filebad:
> > >
> > >  refile:
> > >     /* Stick it back on the list from whence it came and come back later */
> > > -   jffs2_erase_pending_trigger(c);
> > > +   jffs2_garbage_collect_trigger(c);
> >
> > But then you make the code more confusing. Indeed, readability becomes
> > worse.
> >
> > I would just change 'jffs2_erase_pending_trigger()' and make it wake up
> > the GC thread, just like 'jffs2_garbage_collect_trigger()'...
> 
> Here we go then:
> 
> From 96a4a9dc054f2dbd57e180e202f69c9645536e0d Mon Sep 17 00:00:00 2001
> From: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> Date: Tue, 16 Feb 2010 15:18:31 +0100
> Subject: [PATCH] jffs2: Make jffs2_erase_pending_trigger() initiate GC.
> 
> Since erasing is now in the GC thread, erases should trigger
> the GC task instead.
> wbuf.c still wants to flush its buffer via write_super so
> invent jffs2_dirty_trigger() and use that in wbuf.
> Remove surplus call to jffs2_erase_pending_trigger() in erase.c
> and remove jffs2_garbage_collect_trigger() from write_super as
> of now write_super() should only commit dirty data to disk.
> 
> Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> ---
>  fs/jffs2/erase.c    |    2 --
>  fs/jffs2/os-linux.h |    9 +++++++--
>  fs/jffs2/super.c    |    1 -
>  fs/jffs2/wbuf.c     |    2 +-
>  4 files changed, 8 insertions(+), 6 deletions(-)
> 
> diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> index 1ca2559..5616658 100644
> --- a/fs/jffs2/erase.c
> +++ b/fs/jffs2/erase.c
> @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblo
>  	list_move_tail(&jeb->list, &c->erase_complete_list);
>  	spin_unlock(&c->erase_completion_lock);
>  	mutex_unlock(&c->erase_free_sem);
> -	/* Ensure that kupdated calls us again to mark them clean */
> -	jffs2_erase_pending_trigger(c);
>  }

Looks like BGT should be triggered from here in order to write the clean
marker.
Joakim Tjernlund Feb. 17, 2010, 7:35 a.m. UTC | #2
Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/17 08:18:23:
>
> On Tue, 2010-02-16 at 15:27 +0100, Joakim Tjernlund wrote:
> > Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/16 09:59:49:
> > >
> > > On Mon, 2010-02-15 at 17:03 +0100, Joakim Tjernlund wrote:
> > > > Since erasing is done in GC now, trigger GC instead.
> > > > jffs2_erase_pending_trigger() renamed to jffs2_dirty_trigger() and
> > > > used by wbuf. Remove call jffs2_garbage_collect_trigger() in
> > > > write_super()
> > > >
> > > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > > ---
> > > >  fs/jffs2/erase.c    |    4 +---
> > > >  fs/jffs2/gc.c       |    2 +-
> > > >  fs/jffs2/nodemgmt.c |    4 ++--
> > > >  fs/jffs2/os-linux.h |    2 +-
> > > >  fs/jffs2/scan.c     |    2 +-
> > > >  fs/jffs2/super.c    |    1 -
> > > >  fs/jffs2/wbuf.c     |    8 ++++----
> > > >  7 files changed, 10 insertions(+), 13 deletions(-)
> > > >
> > > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > > index 1ca2559..fdf9418 100644
> > > > --- a/fs/jffs2/erase.c
> > > > +++ b/fs/jffs2/erase.c
> > > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > > *c, struct jffs2_eraseblo
> > > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > > >     spin_unlock(&c->erase_completion_lock);
> > > >     mutex_unlock(&c->erase_free_sem);
> > > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > > -   jffs2_erase_pending_trigger(c);
> > > >  }
> > > >
> > > >  static void jffs2_erase_failed(struct jffs2_sb_info *c, struct
> > > jffs2_eraseblock *jeb, uint32_t bad_offset)
> > > > @@ -492,7 +490,7 @@ filebad:
> > > >
> > > >  refile:
> > > >     /* Stick it back on the list from whence it came and come back later */
> > > > -   jffs2_erase_pending_trigger(c);
> > > > +   jffs2_garbage_collect_trigger(c);
> > >
> > > But then you make the code more confusing. Indeed, readability becomes
> > > worse.
> > >
> > > I would just change 'jffs2_erase_pending_trigger()' and make it wake up
> > > the GC thread, just like 'jffs2_garbage_collect_trigger()'...
> >
> > Here we go then:
> >
> > From 96a4a9dc054f2dbd57e180e202f69c9645536e0d Mon Sep 17 00:00:00 2001
> > From: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > Date: Tue, 16 Feb 2010 15:18:31 +0100
> > Subject: [PATCH] jffs2: Make jffs2_erase_pending_trigger() initiate GC.
> >
> > Since erasing is now in the GC thread, erases should trigger
> > the GC task instead.
> > wbuf.c still wants to flush its buffer via write_super so
> > invent jffs2_dirty_trigger() and use that in wbuf.
> > Remove surplus call to jffs2_erase_pending_trigger() in erase.c
> > and remove jffs2_garbage_collect_trigger() from write_super as
> > of now write_super() should only commit dirty data to disk.
> >
> > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > ---
> >  fs/jffs2/erase.c    |    2 --
> >  fs/jffs2/os-linux.h |    9 +++++++--
> >  fs/jffs2/super.c    |    1 -
> >  fs/jffs2/wbuf.c     |    2 +-
> >  4 files changed, 8 insertions(+), 6 deletions(-)
> >
> > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > index 1ca2559..5616658 100644
> > --- a/fs/jffs2/erase.c
> > +++ b/fs/jffs2/erase.c
> > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> *c, struct jffs2_eraseblo
> >     list_move_tail(&jeb->list, &c->erase_complete_list);
> >     spin_unlock(&c->erase_completion_lock);
> >     mutex_unlock(&c->erase_free_sem);
> > -   /* Ensure that kupdated calls us again to mark them clean */
> > -   jffs2_erase_pending_trigger(c);
> >  }
>
> Looks like BGT should be triggered from here in order to write the clean
> marker.

How so? JFFS2 is already running jffs2_erase_pending_blocks() and
has just completed an erase, the next thing it will do is to mark it with a clean
marker. To me it looks like belts and suspenders: kick it again just in case we missed
something.

 Jocke
Artem Bityutskiy Feb. 17, 2010, 7:48 a.m. UTC | #3
On Wed, 2010-02-17 at 08:35 +0100, Joakim Tjernlund wrote:
> Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/17 08:18:23:
> >
> > On Tue, 2010-02-16 at 15:27 +0100, Joakim Tjernlund wrote:
> > > Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/16 09:59:49:
> > > >
> > > > On Mon, 2010-02-15 at 17:03 +0100, Joakim Tjernlund wrote:
> > > > > Since erasing is done in GC now, trigger GC instead.
> > > > > jffs2_erase_pending_trigger() renamed to jffs2_dirty_trigger() and
> > > > > used by wbuf. Remove call jffs2_garbage_collect_trigger() in
> > > > > write_super()
> > > > >
> > > > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > > > ---
> > > > >  fs/jffs2/erase.c    |    4 +---
> > > > >  fs/jffs2/gc.c       |    2 +-
> > > > >  fs/jffs2/nodemgmt.c |    4 ++--
> > > > >  fs/jffs2/os-linux.h |    2 +-
> > > > >  fs/jffs2/scan.c     |    2 +-
> > > > >  fs/jffs2/super.c    |    1 -
> > > > >  fs/jffs2/wbuf.c     |    8 ++++----
> > > > >  7 files changed, 10 insertions(+), 13 deletions(-)
> > > > >
> > > > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > > > index 1ca2559..fdf9418 100644
> > > > > --- a/fs/jffs2/erase.c
> > > > > +++ b/fs/jffs2/erase.c
> > > > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > > > *c, struct jffs2_eraseblo
> > > > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > > > >     spin_unlock(&c->erase_completion_lock);
> > > > >     mutex_unlock(&c->erase_free_sem);
> > > > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > > > -   jffs2_erase_pending_trigger(c);
> > > > >  }
> > > > >
> > > > >  static void jffs2_erase_failed(struct jffs2_sb_info *c, struct
> > > > jffs2_eraseblock *jeb, uint32_t bad_offset)
> > > > > @@ -492,7 +490,7 @@ filebad:
> > > > >
> > > > >  refile:
> > > > >     /* Stick it back on the list from whence it came and come back later */
> > > > > -   jffs2_erase_pending_trigger(c);
> > > > > +   jffs2_garbage_collect_trigger(c);
> > > >
> > > > But then you make the code more confusing. Indeed, readability becomes
> > > > worse.
> > > >
> > > > I would just change 'jffs2_erase_pending_trigger()' and make it wake up
> > > > the GC thread, just like 'jffs2_garbage_collect_trigger()'...
> > >
> > > Here we go then:
> > >
> > > From 96a4a9dc054f2dbd57e180e202f69c9645536e0d Mon Sep 17 00:00:00 2001
> > > From: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > Date: Tue, 16 Feb 2010 15:18:31 +0100
> > > Subject: [PATCH] jffs2: Make jffs2_erase_pending_trigger() initiate GC.
> > >
> > > Since erasing is now in the GC thread, erases should trigger
> > > the GC task instead.
> > > wbuf.c still wants to flush its buffer via write_super so
> > > invent jffs2_dirty_trigger() and use that in wbuf.
> > > Remove surplus call to jffs2_erase_pending_trigger() in erase.c
> > > and remove jffs2_garbage_collect_trigger() from write_super as
> > > of now write_super() should only commit dirty data to disk.
> > >
> > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > ---
> > >  fs/jffs2/erase.c    |    2 --
> > >  fs/jffs2/os-linux.h |    9 +++++++--
> > >  fs/jffs2/super.c    |    1 -
> > >  fs/jffs2/wbuf.c     |    2 +-
> > >  4 files changed, 8 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > index 1ca2559..5616658 100644
> > > --- a/fs/jffs2/erase.c
> > > +++ b/fs/jffs2/erase.c
> > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > *c, struct jffs2_eraseblo
> > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > >     spin_unlock(&c->erase_completion_lock);
> > >     mutex_unlock(&c->erase_free_sem);
> > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > -   jffs2_erase_pending_trigger(c);
> > >  }
> >
> > Looks like BGT should be triggered from here in order to write the clean
> > marker.
> 
> How so? JFFS2 is already running jffs2_erase_pending_blocks() and
> has just completed an erase, the next thing it will do is to mark it with a clean
> marker. To me it looks like belts and suspenders: kick it again just in case we missed
> something.

OK. I expect you will send the final version of your 2 patches, then
I'll put them to my l2 tree, right?
Joakim Tjernlund Feb. 17, 2010, 7:55 a.m. UTC | #4
Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/17 08:48:28:
> Subject: Re: [PATCH 2/2] s/jffs2_erase_pending_trigger/jffs2_garbage_collect_trigger/
>
> On Wed, 2010-02-17 at 08:35 +0100, Joakim Tjernlund wrote:
> > Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/17 08:18:23:
> > >
> > > On Tue, 2010-02-16 at 15:27 +0100, Joakim Tjernlund wrote:
> > > > Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/16 09:59:49:
> > > > >
> > > > > On Mon, 2010-02-15 at 17:03 +0100, Joakim Tjernlund wrote:
> > > > > > Since erasing is done in GC now, trigger GC instead.
> > > > > > jffs2_erase_pending_trigger() renamed to jffs2_dirty_trigger() and
> > > > > > used by wbuf. Remove call jffs2_garbage_collect_trigger() in
> > > > > > write_super()
> > > > > >
> > > > > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > > > > ---
> > > > > >  fs/jffs2/erase.c    |    4 +---
> > > > > >  fs/jffs2/gc.c       |    2 +-
> > > > > >  fs/jffs2/nodemgmt.c |    4 ++--
> > > > > >  fs/jffs2/os-linux.h |    2 +-
> > > > > >  fs/jffs2/scan.c     |    2 +-
> > > > > >  fs/jffs2/super.c    |    1 -
> > > > > >  fs/jffs2/wbuf.c     |    8 ++++----
> > > > > >  7 files changed, 10 insertions(+), 13 deletions(-)
> > > > > >
> > > > > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > > > > index 1ca2559..fdf9418 100644
> > > > > > --- a/fs/jffs2/erase.c
> > > > > > +++ b/fs/jffs2/erase.c
> > > > > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > > > > *c, struct jffs2_eraseblo
> > > > > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > > > > >     spin_unlock(&c->erase_completion_lock);
> > > > > >     mutex_unlock(&c->erase_free_sem);
> > > > > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > > > > -   jffs2_erase_pending_trigger(c);
> > > > > >  }
> > > > > >
> > > > > >  static void jffs2_erase_failed(struct jffs2_sb_info *c, struct
> > > > > jffs2_eraseblock *jeb, uint32_t bad_offset)
> > > > > > @@ -492,7 +490,7 @@ filebad:
> > > > > >
> > > > > >  refile:
> > > > > >     /* Stick it back on the list from whence it came and come back later */
> > > > > > -   jffs2_erase_pending_trigger(c);
> > > > > > +   jffs2_garbage_collect_trigger(c);
> > > > >
> > > > > But then you make the code more confusing. Indeed, readability becomes
> > > > > worse.
> > > > >
> > > > > I would just change 'jffs2_erase_pending_trigger()' and make it wake up
> > > > > the GC thread, just like 'jffs2_garbage_collect_trigger()'...
> > > >
> > > > Here we go then:
> > > >
> > > > From 96a4a9dc054f2dbd57e180e202f69c9645536e0d Mon Sep 17 00:00:00 2001
> > > > From: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > > Date: Tue, 16 Feb 2010 15:18:31 +0100
> > > > Subject: [PATCH] jffs2: Make jffs2_erase_pending_trigger() initiate GC.
> > > >
> > > > Since erasing is now in the GC thread, erases should trigger
> > > > the GC task instead.
> > > > wbuf.c still wants to flush its buffer via write_super so
> > > > invent jffs2_dirty_trigger() and use that in wbuf.
> > > > Remove surplus call to jffs2_erase_pending_trigger() in erase.c
> > > > and remove jffs2_garbage_collect_trigger() from write_super as
> > > > of now write_super() should only commit dirty data to disk.
> > > >
> > > > Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
> > > > ---
> > > >  fs/jffs2/erase.c    |    2 --
> > > >  fs/jffs2/os-linux.h |    9 +++++++--
> > > >  fs/jffs2/super.c    |    1 -
> > > >  fs/jffs2/wbuf.c     |    2 +-
> > > >  4 files changed, 8 insertions(+), 6 deletions(-)
> > > >
> > > > diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
> > > > index 1ca2559..5616658 100644
> > > > --- a/fs/jffs2/erase.c
> > > > +++ b/fs/jffs2/erase.c
> > > > @@ -172,8 +172,6 @@ static void jffs2_erase_succeeded(struct jffs2_sb_info
> > > *c, struct jffs2_eraseblo
> > > >     list_move_tail(&jeb->list, &c->erase_complete_list);
> > > >     spin_unlock(&c->erase_completion_lock);
> > > >     mutex_unlock(&c->erase_free_sem);
> > > > -   /* Ensure that kupdated calls us again to mark them clean */
> > > > -   jffs2_erase_pending_trigger(c);
> > > >  }
> > >
> > > Looks like BGT should be triggered from here in order to write the clean
> > > marker.
> >
> > How so? JFFS2 is already running jffs2_erase_pending_blocks() and
> > has just completed an erase, the next thing it will do is to mark it with a clean
> > marker. To me it looks like belts and suspenders: kick it again just in casewe missed
> > something.
>
> OK. I expect you will send the final version of your 2 patches, then
> I'll put them to my l2 tree, right?

OK, will do shortly. What is your l2 tree? I figured you would
push this to the mtd tree.

 Jocke
Artem Bityutskiy Feb. 17, 2010, 8:07 a.m. UTC | #5
On Wed, 2010-02-17 at 08:55 +0100, Joakim Tjernlund wrote:
> > OK. I expect you will send the final version of your 2 patches, then
> > I'll put them to my l2 tree, right?
> 
> OK, will do shortly. What is your l2 tree?

It is just my own tree where I collect random mtd stuff, and then dwmw2
picks stuff from there to his tree. It is just some help I provide him.

>  I figured you would
> push this to the mtd tree.

No, I do not maintain mtd, and only David can push stuff there. My tree
is only to help him.
Joakim Tjernlund Feb. 17, 2010, 8:19 a.m. UTC | #6
Artem Bityutskiy <dedekind1@gmail.com> wrote on 2010/02/17 09:07:46:
>
> On Wed, 2010-02-17 at 08:55 +0100, Joakim Tjernlund wrote:
> > > OK. I expect you will send the final version of your 2 patches, then
> > > I'll put them to my l2 tree, right?
> >
> > OK, will do shortly. What is your l2 tree?
>
> It is just my own tree where I collect random mtd stuff, and then dwmw2
> picks stuff from there to his tree. It is just some help I provide him.
>
> >  I figured you would
> > push this to the mtd tree.
>
> No, I do not maintain mtd, and only David can push stuff there. My tree
> is only to help him.

I see, seems David is busy these days as I have not seen any mails from him.
David, are you following this?

Anyhow, I just sent my two patches in its final form to the list.

   Jocke
diff mbox

Patch

diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
index 1ca2559..5616658 100644
--- a/fs/jffs2/erase.c
+++ b/fs/jffs2/erase.c
@@ -172,8 +172,6 @@  static void jffs2_erase_succeeded(struct jffs2_sb_info *c, struct jffs2_eraseblo
 	list_move_tail(&jeb->list, &c->erase_complete_list);
 	spin_unlock(&c->erase_completion_lock);
 	mutex_unlock(&c->erase_free_sem);
-	/* Ensure that kupdated calls us again to mark them clean */
-	jffs2_erase_pending_trigger(c);
 }

 static void jffs2_erase_failed(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset)
diff --git a/fs/jffs2/os-linux.h b/fs/jffs2/os-linux.h
index a7f03b7..5d26362 100644
--- a/fs/jffs2/os-linux.h
+++ b/fs/jffs2/os-linux.h
@@ -140,8 +140,7 @@  void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c);

 #endif /* WRITEBUFFER */

-/* erase.c */
-static inline void jffs2_erase_pending_trigger(struct jffs2_sb_info *c)
+static inline void jffs2_dirty_trigger(struct jffs2_sb_info *c)
 {
 	OFNI_BS_2SFFJ(c)->s_dirt = 1;
 }
@@ -151,6 +150,12 @@  int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c);
 void jffs2_stop_garbage_collect_thread(struct jffs2_sb_info *c);
 void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c);

+/* erase.c */
+static inline void jffs2_erase_pending_trigger(struct jffs2_sb_info *c)
+{
+	jffs2_garbage_collect_trigger(c);
+}
+
 /* dir.c */
 extern const struct file_operations jffs2_dir_operations;
 extern const struct inode_operations jffs2_dir_inode_operations;
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c
index 5162329..511e2d6 100644
--- a/fs/jffs2/super.c
+++ b/fs/jffs2/super.c
@@ -63,7 +63,6 @@  static void jffs2_write_super(struct super_block *sb)

 	if (!(sb->s_flags & MS_RDONLY)) {
 		D1(printk(KERN_DEBUG "jffs2_write_super()\n"));
-		jffs2_garbage_collect_trigger(c);
 		jffs2_flush_wbuf_gc(c, 0);
 	}

diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c
index 5ef7bac..f319efc 100644
--- a/fs/jffs2/wbuf.c
+++ b/fs/jffs2/wbuf.c
@@ -84,7 +84,7 @@  static void jffs2_wbuf_dirties_inode(struct jffs2_sb_info *c, uint32_t ino)
 	struct jffs2_inodirty *new;

 	/* Mark the superblock dirty so that kupdated will flush... */
-	jffs2_erase_pending_trigger(c);
+	jffs2_dirty_trigger(c);

 	if (jffs2_wbuf_pending_for_ino(c, ino))
 		return;