[JFFS2] Don't count all 'very dirty' blocks except in debug mode
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Sat Oct 13 06:59:01 EDT 2007
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=a8c68f32644fc8942b25af9239967dd01be621fa
Commit: a8c68f32644fc8942b25af9239967dd01be621fa
Parent: 2665ea842dc9f4c04bdb57f8b7c2023759ac8c85
Author: David Woodhouse <dwmw2 at infradead.org>
AuthorDate: Sat Oct 13 11:32:16 2007 +0100
Committer: David Woodhouse <dwmw2 at infradead.org>
CommitDate: Sat Oct 13 11:32:16 2007 +0100
[JFFS2] Don't count all 'very dirty' blocks except in debug mode
... where we'll actually print the count in a debug message.
Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
fs/jffs2/nodemgmt.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/fs/jffs2/nodemgmt.c b/fs/jffs2/nodemgmt.c
index 1b79534..a0313fa 100644
--- a/fs/jffs2/nodemgmt.c
+++ b/fs/jffs2/nodemgmt.c
@@ -749,7 +749,9 @@ int jffs2_thread_should_wake(struct jffs2_sb_info *c)
nr_very_dirty++;
if (nr_very_dirty == c->vdirty_blocks_gctrigger) {
ret = 1;
- D1(break);
+ /* In debug mode, actually go through and count them all */
+ D1(continue);
+ break;
}
}
More information about the linux-mtd-cvs
mailing list