diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2010-05-19 16:55:40 +0100 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-05-19 16:55:40 +0100 |
commit | d6ce171069635f05737935adc813b4d48d71a583 (patch) | |
tree | b0356df55a3d86cf9f5074ea926294fd3a206607 /fs/jffs2 | |
parent | 0717bf8411bb673dd2369aaa096f7396446b38f5 (diff) | |
download | linux-3.10-d6ce171069635f05737935adc813b4d48d71a583.tar.gz linux-3.10-d6ce171069635f05737935adc813b4d48d71a583.tar.bz2 linux-3.10-d6ce171069635f05737935adc813b4d48d71a583.zip |
jffs2: Wake GC thread when there are blocks to be erased
Now that we trigger block erases from jffs2_garbage_collect_pass(),
adjust jffs2_thread_should_wake() to return 1 when there are blocks to
erase.
Signed-off-by: Joakim Tjernlund <joakim.tjernlund@transmode.se>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'fs/jffs2')
-rw-r--r-- | fs/jffs2/nodemgmt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/jffs2/nodemgmt.c b/fs/jffs2/nodemgmt.c index 08e2c69fc14..5ab5c8521cd 100644 --- a/fs/jffs2/nodemgmt.c +++ b/fs/jffs2/nodemgmt.c @@ -744,6 +744,10 @@ int jffs2_thread_should_wake(struct jffs2_sb_info *c) int nr_very_dirty = 0; struct jffs2_eraseblock *jeb; + if (!list_empty(&c->erase_complete_list) || + !list_empty(&c->erase_pending_list)) + return 1; + if (c->unchecked_size) { D1(printk(KERN_DEBUG "jffs2_thread_should_wake(): unchecked_size %d, checked_ino #%d\n", c->unchecked_size, c->checked_ino)); |